// JavaScript Document

$(document).ready(function(){
	


// Additional information animation.
	
	 $("#add-info").ready(function(){
	  	$("#hide").fadeOut("fast");
	  
    });
	 
	 $("#details-show").ready(function(){
     	$("#close").fadeOut("fast");
	  
    });
	 
	$("#list-show ").ready(function(){
      $("#hidden").fadeOut("fast");
	  
    });
	  
	  
	//$("#popClose").click(function (){
		//document.getElementById("gallery_holder").innerHTML="";
	//});

	$("#popClose").click(function(){
		processAjax("gallery.php?propertyid=<?php echo $vProperty['PropertyID']; ?>");
	});
	 
});


