$(document).ready(
	function(){	
		var thisPage = $('.page').attr('id');
		if(thisPage == 'home'){
			$('#slideshow').celerslides({intervalTime:5000}); 
		}
		$(".navItem").hover(
			function(){
				$("#"+this.id+" a").addClass("highLightItem");
				$("#"+this.id+" ul.hovered").css("opacity", ".95").css("filter", "alpha(opacity=90)").animate({ height: "210px" }, 500);
			}, 
			function(){
				var navUL = "#"+this.id+" ul.hovered";
				$("#"+this.id+" a").removeClass("highLightItem");
				$(navUL).fadeOut("fast", function(){ 
						$(navUL).css("height", "0");
					});
			}
		);
		$("#shippingDetail").click(
			function () {
				$("#shippingDetail div ").toggle('slow');
			}
		);

	}
);
