$(document).ready(
	function(){
		
		$(".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");
					});
			}
		);

		$("#productShipping").click(
			function () {
				$("#productShipping div ").toggle('slow');
			}
		);

		$("a.lightbox").lightBox({fixedNavigation:true});

	}
);