$(document).ready(function() {

	// CLICKABLE ELEMENTS
	
	$("div.elementClick").click(function() {
		window.location = $(this).attr("url");
		return false;
	});

	// PROPERTY ROLL OVER FUNCTIONALITY
	
	$(".property").css({'cursor' : 'pointer' }); // Change Cursor To Pointer
	
	$(".property:not(.active)").mouseenter(function(event){
			$property = $(this);
			$property.addClass('propertyOn');
			$property.animate({ backgroundColor: "#ffedcc" }, 'fast');
		}
	).mouseleave(function(event){
		$property = $(this);
		$property.removeClass('propertyOn');
		$(".property-01:not(.active)").css({backgroundColor : '#7e6f7a' }); // Change BG Back
		$(".property-02:not(.active)").css({backgroundColor : '#b8b0b6' }); // Change BG Back
		$(".property-03:not(.active)").css({backgroundColor : '#8b898a' }); // Change BG Back
		$(".property-04:not(.active)").css({backgroundColor : '#c1c1c1' }); // Change BG Back
	});
	

});
