$(function(){
		//menu dropdown
		var hide = false;
        $("a#property-search").hover(function(){
            if (hide) clearTimeout(hide);
            if($("div.dropdown").queue().length < 2)
			$("div.dropdown").fadeIn(100);			
        }, function() {
            hide = setTimeout(function() {
				$("div.dropdown").fadeOut(100);
				}, 500);
		});
        $("div.dropdown").hover(function(){
            if (hide) clearTimeout(hide);
					
			}, function() {
            hide = setTimeout(function() {$("div.dropdown").fadeOut(100); 
			}, 500);

		});
		
	//fade fx on home/results	
	  $(".featured-link").hover(function(){
		  $(this).parent("div").stop().animate({ backgroundColor: "#777777" }, 250);
	  },function(){
		  $(this).parent("div").stop().animate({ backgroundColor: "#bbbbbb" }, 250);
	  });
	  
	  $(".result").hover(function(){
		  $(this).stop().animate({ backgroundColor: "#cfe4e9" }, 400);
	  },function(){
		  $(this).stop().animate({ backgroundColor: "#f2f2f2" }, 400);
	  });
	  
	 	$(".developments").hover(function(){
		  $(this).stop().animate({ backgroundColor: "#cfe4e9" }, 400);
	  },function(){
		  $(this).stop().animate({ backgroundColor: "#f1f1f1" }, 400);
	  });  
	  


	  
		  
});


