	/******** FANCYBOX ********/

 jQuery(window).load(function(){
		    jQuery("#slider").nivoSlider({
		        effect:"fade",
		       // slices:15,
		       // boxCols:8,
		        //boxRows:4,
		        animSpeed:500,
		        pauseTime:3000,
		        startSlide:0,
		        directionNav:true,
		        directionNavHide:false,
		        controlNav:false,
		        controlNavThumbs:false,
		        controlNavThumbsFromRel:false
		      //  keyboardNav:true,
		       // pauseOnHover:true,
		       // manualAdvance:false
		    });
		});


	   /*********** DROPDOWN MENU  ************/
$(document).ready(function()
	{
		
 		$("#hair-care").hover(function() {

		 	clearTimeout($.data(this, 'timer'));

		    	$(".children").stop(true, true).slideDown(200);

 					}, function () {

						 $.data(this, 'timer', setTimeout($.proxy(function() {

		     		    	$(".children").stop(true, true).slideUp(200);

								}, this), 200));

							  });
 		$("#hair-care-cont").hover(function() {

		 	clearTimeout($.data(this, 'timer'));

		    	$(".children-cont").stop(true, true).slideDown(200);

 					}, function () {

						 $.data(this, 'timer', setTimeout($.proxy(function() {

		     		    	$(".children-cont").stop(true, true).slideUp(200);

								}, this), 200));

							  });
							  
							  
							  });

	
