var gespafor = function(){
	return {
		init : function(){
			if($.browser.msie){
				$("#content table.inmuebles tbody tr").hover(function () {
					$(this).addClass("hover");
					},function () { 
						$(this).removeClass("hover");
					}
				);
			}
		}
	} 
}();



$(document).ready(gespafor.init);
