//<![CDATA[
		   
$(document).ready(function() {
	$(".result").hover( 
	   function() { $(this).addClass("over"); }, 
	   function() { $(this).removeClass("over"); });
	
	/*.click( function() { 
		var href = $(this).find(".resultlink").attr("href");
		//href = href.replace(/\+/, "%2B");
		//console.log(href);
		location.href = href;
	});*/
	
	$("#results tbody tr:nth-child(odd)").addClass("odd");	
});


//]]>