
$(document).ready(function() {
		
	var zIndexNumber = 1000;
	$('div').each(function() {
		$(this).css('zIndex', zIndexNumber);
		zIndexNumber -= 10;
	});


	$('#locations div').css('z-index','2200');

	$('#mapping div').css('z-index','2200');

	$('#mainContent .links .hidden').hide();

	$('#mainContent .links').after('<p class="show"><a href="#">click here to see all <strong>[+]</strong></a></p>');
	
	$('#mainContent .main').append('<img class="blocksImage" src="img/links-bg.gif" width="686" height="31" alt="" />');	
	
	$('#mainContent .alt').append('<img class="blocksImage" src="img/links-alt-bg.gif" width="686" height="31" alt="" />');	
	
	
	$('#mainContent .show').click(function() {
		$(this).prev('div').children('.hidden').show('slow');
		$(this).prev('div').children('.blocksImage').hide();
		$(this).hide('slow');
		return false;
	});	
	

	$('.hiddenBox').hide();
	

	

	$('#toyTable tr:nth-child(odd)').addClass('other');		
	

	$("input[name^='toy_price']").sum("keyup", "#totalSum");


	$('#toyCategories').show();
	$('#simpleToyCategories').hide();
	$('#orderTable .last').show();

	
});
