$(document).ready(function() {
	$("#list_products_block ul li").hover(function() {
		$(this).find('img, .price_lower, .new').stop().css('display','none').fadeTo(1, 0);
		$(this).find('.hover_bg').stop().css('visibility','visible').fadeTo(1, 1);	
		
	}, function() {
		$(this).find('img, .price_lower, .new').css('display','inline').fadeTo("slow", 1)
		$(this).find('.hover_bg').stop().fadeTo("fast", 0);	
	});
	if( $.browser.opera ){
		  $('body').css('overflow-x','hidden');
	}
});
