my.list = {
	init: function() {
		$(".results .item").hover(function() {
				$(this).children(".item-inner").addClass("item-inner-hover");
			},function(){
				$(this).children(".item-inner").removeClass("item-inner-hover");				
			}).css("cursor","pointer").click(function() {
				window.location = $(this).children("a.go").attr("href");
			});
	}
}

jQuery(document).ready(function($) {
  my.list.init();
});