$(document).ready(function(){
	$('.project_house_info tr:not(:first):not(.th)').hover(
	function(){
		$(this).css({background:'#2375bb',color:'white'}).find('a').css({color:'white'});
	} ,function () {
		if($(this).attr('rel')!='sold')
		{
			$(this).css({background:'none',color:'black'}).find('a').css({color:'black'});
		} else {
			$(this).css({background:'none',color:'#909090'}).find('a').css({color:'#909090'});
		}
	}).click(function (){
		window.location=$(this).find('a').attr('href');
	});
});
