jQuery(document).ready(function(){
								
	$(".products-a").mouseover(function(){
		$("#dropdown").fadeIn("slow");
    })
	
	$("div#dropdown").mouseleave(function(){
		$(this).fadeOut("slow");								 
	})
	
	$("#navigation ul li a:not(.products-a)").mouseover(function(){
		$("div#dropdown").fadeOut("slow");														 
	})
	
	$(".dropdownClose").click(function() {
		$("div#dropdown").fadeOut("slow");							   
	})
	
	// Lightbox
	$(function() {
		$(".lightbox").lightbox();
	});
	
	$("#dropdown").click(function () {
      $(this).fadeTo("slow", 0.33);
    });

	
	// Hide/Show Specifications
	$("p.spec").addClass("switchOff").click(function() {
		if($(this).is(".switchOff")) {
			$(this).next().slideDown("slow", function() { 
				$(this).prev().removeClass("switchOff").addClass("switchOn");
			});
		} 
		if ($(this).is(".switchOn")) {
			$(this).next().slideUp("slow", function() { 
				$(this).prev().removeClass("switchOn").addClass("switchOff");
			});
		}
	}).next().hide();
	

});