$(document).ready(function() {
	$('a[rel*=facybox]').facybox({
		// noAutoload: true
	});
	$("#resultspage tr").each(function(){
		$(this).hover(function(){
			$(this).addClass("hover");
		},function(){
			$(this).removeClass("hover");
		});
	});
});

