//when the page is loaded...
$(document).ready(function () {
							
			/* When a thumbnail is hovered over  'li.ajax_block_product'*/
		$('div.hf_hit_box').hover(function(){								  
	        $(this).find("div.reflet").stop();
			$(this).find("div.reflet").css("background-position","-300px 0");
			$(this).find("div.reflet").animate({backgroundPosition: '230px 0'},600);
			
		}, function(){
			
		});				
							

});

