$(document).ready(function() {

	$('div.result').hover(function() {
	  $(this).addClass('result_hover');
	}, function() {
	  $(this).removeClass('result_hover');
	});
});

