// JavaScript Document

 $(document).ready(function(){
		$("#dropdownbcfl").hide();
		$("#dropdownpkl").hide();
		$("#dropdownlbl").hide();
		$("#dropdowngl").hide();
	$("#dropdownbcfl").mouseover(function(){
	//	$("#dropdownbcfl").show("fast");							  
		clearTimeout(timer);							  							  
	});
	$("#dropdownbcfl").mouseout(function(){
		timer = setTimeout(function(){ $("#dropdownbcfl").fadeOut() }, 1000);						  
	});
	$("#dropdownpkl").mouseover(function(){
		//$("#dropdownpkl").show("fast");							  
		clearTimeout(timer);							  							  
	});
	$("#dropdownpkl").mouseout(function(){
		timer = setTimeout(function(){ $("#dropdownpkl").fadeOut() }, 1000);						  
	});
	$("#dropdownlbl").mouseover(function(){
		//$("#dropdownlbl").show("fast");							  
		clearTimeout(timer);							  							  
	});
	$("#dropdownlbl").mouseout(function(){
		timer = setTimeout(function(){ $("#dropdownlbl").fadeOut() }, 1000);						  
	});
	$("#dropdowngl").mouseover(function(){
	//	$("#dropdowngl").show("fast");							  
		clearTimeout(timer);							  							  
	});
	$("#dropdowngl").mouseout(function(){
		timer = setTimeout(function(){ $("#dropdowngl").fadeOut() }, 1000);						  
	});


	 $("#buffalocreekfarmslinks").mouseover(function(){
			var timer;					  
			$("#dropdownbcfl").show("fast");
			$("#dropdownpkl").hide("fast");
			$("#dropdownlbl").hide("fast");
			$("#dropdowngl").hide("fast");
			clearTimeout(timer);
	  event.preventDefault();
	
	 });
	 $("#buffalocreekfarmslinks").mouseout(function(){
		timer = setTimeout(function(){ $("#dropdownbcfl").fadeOut() }, 1000);			   										   
	 });
	 
   $("#persiankittenlinks").mouseover(function(){
		$("#dropdownpkl").show("fast");
		$("#dropdownbcfl").hide("fast");
		$("#dropdownlbl").hide("fast");
		$("#dropdowngl").hide("fast");
		clearTimeout(timer);
		event.preventDefault();

	});
   $("#persiankittenlinks").mouseout(function(){
		timer = setTimeout(function(){ $("#dropdownpkl").fadeOut() }, 1000);					  										
    });

      $("#lionheadbunnieslinks").mouseover(function(){
		$("#dropdownlbl").show("fast");
		$("#dropdownbcfl").hide("fast");
		$("#dropdownpkl").hide("fast");
		$("#dropdowngl").hide("fast");
		clearTimeout(timer);
		event.preventDefault();

	});
   $("#lionheadbunnieslinks").mouseout(function(){
		timer = setTimeout(function(){ $("#dropdownlbl").fadeOut() }, 1000);					  										
    });

   
 });
 