(function($) {

	$(function() {
		$(".property-item li").hover(
			function() {
				this.style.cursor='pointer';
				this.style.backgroundColor='#333';
				$("p.intro",this).fadeIn('fast');
			},
			function() {
				this.style.cursor='';
				this.style.backgroundColor='';
				$("p.intro",this).fadeOut('fast');
			}
		   
		).click(
			function() {
				window.location=$("a",this).attr('href');
			}
		);
	});

})(jQuery);
