alert('in here');
// Functions
/*
function hideAllInfo() {
	$('.info').hide();
}


$(document).ready(function(){

	// Preload Images
	$('#property-listings a').preload({ threshold:2 });
	
	// Vars
	var firstHref = $('#property-listings a:first-child').attr('href');
	
	// Default View
	hideAllInfo();
	$('#listing01').show();
	$('#primaryContent').css('backgroundImage','url(' + firstHref +')');
	
	$('#property-listings a').click(function(){
		
		var href = $(this).attr('href');
		var relTag  = $(this).attr('rel');
		
		// Set background
		$('#primaryContent').css('backgroundImage','url(' + href +')');
		
		// Set #info content
		hideAllInfo();
		$('#'+relTag).show();
		
		return false;
	});
});

*/
