$(document).ready(function() {
	$("#list_products_block ul li, .category_block ul li").hover(function() {
		$(this).find('.main_category_element img').stop().css('display','none').fadeTo(1, 0);
		$(this).find('.hover_bg').stop().css('visibility','visible').fadeTo(1, 1);	
		
		var imgID = $(this).find('.product_price IMG').attr('id');
		$("#" + imgID).attr("src","/themes/clean-simple/img_cat-on/" + imgID + "-hi.png");
		
	}, function() {
		$(this).find('.main_category_element img').css('display','inline').fadeTo("slow", 1)
		$(this).find('.hover_bg').stop().fadeTo("fast", 0);	

		var imgID = $(this).find('.product_price IMG').attr('id');
		$("#" + imgID).attr("src","/themes/clean-simple/img_cat-on/" + imgID + ".png");

	});
	if( $.browser.opera ){
		  $('body').css('overflow-x','hidden');
	}
	
	
	//setTimeout('showHomeslides()', 2000);
	
});

function showHomeslides(){

	jQuery('#home_slides').show();

}
