// JavaScript Document

$(window).load(function(){
	
    // Property Details animation.
	
	  $("#home-news").ready(function(){
      $("#home-news").animate({ 
        top: "35px"
      }, 1000 );
	  
	  
	  $("#tab-open").fadeOut("slow");
	  
	  $("#tab-close").fadeIn("fast");
	  
    });
		
    $("#details-show").click(function(){
      $("#home-news").animate({ 
        top: "35px"
      }, 1000 );
	  
	  
	  $("#tab-open").fadeOut("slow");
	  
	  $("#tab-close").fadeIn("fast");
	  
    });
	
	
	  $("#details-hide").click(function(){
      $("#home-news").animate({ 
        top: "205px"
      }, 1000 );
	  
	  
	  $("#tab-open").fadeIn("fast");
	  
	  $("#tab-close").fadeOut("slow");
    });

});


