/**
	THESE ARE THE JQUERY FUNCTIONS FOR TERRA
**/
$(document).ready(function () {  
	
	var options = {  
	direction:	'right',  
	duration:	500,  
	stageW:		'690px',  
	stageH:		'510px',
	oflabel: 	'/',
	nlabel: 	'>',
	plabel: 	'<'
	}  
   
	$('.popeye').popeye(options);  
	 
	$('#property_details').click(function () {
		$('#property_details').hide();
		$('#propertyinfo_holder').show();
		});
		
	$('div.close').click(function () {
		$('#propertyinfo_holder').hide();
		$('#property_details').show();
		});
		
 	$('#featuredHome').randomChild();



	
});