jQuery(function ($) {
	
	//this makes the window status the link title on mouseover; it keeps track of the old window.status so it can revert it on mouseout
	$('a.property')
		.mouseover(function () {
			window.dirtystatus = window.status;
			window.status = this.title;
		})
		.mouseout(function () {
			window.status = window.dirtystatus;
		});
	
});
