// Каталог товаров
$(document).ready(function(){
$(".bor a").click(function(e){
e.preventDefault();
$(".bor a").removeAttr("id");
$(this).attr("id","acti");
var cl=$(this).parents("td").attr("class");
$(".tab_text").hide();
$(".tab_text."+cl).show();

});



        $('div.item').hover(
        function() {
        		id = $(this).attr('id');
                $('#'+id+' img').attr('src','image/rgb/'+id+'.jpg');
            },
        function() {
                 $('#'+id+' img').attr('src','image/gray/'+id+'.jpg');
            }   
        
        );    
});

// Популярные товары .hover
$(document).ready(function(){
        $('li.cat_li').hover(
        function() {
        		$(this).addClass('test');
            },
        function() {
       			$(this).removeClass('test');
            }   
        
        );    
});

// Похожие товары .hover
$(document).ready(function(){
        $('.pohozh_link').hover(
        function() {
        		$(this).addClass('pohozh_link_hover');
            },
        function() {
       			$(this).removeClass('pohozh_link_hover');
            }   
        
        );    
});

/**
		$(document).ready(function() {	
			$("a.zoom1").fancybox({
				'overlayOpacity'	:	0.7,
				'overlayColor'		:	'#FFF'
			});
				
		});
**/

$(document).ready(function(){
	$('#side_block_link ul li').hover(
		function() {
			if ($(this).hasClass('active'))
			{
				return;
			}
			var el_span = $(this).find('span');
			if (el_span.length)
			{
				el_span.removeClass('blue_pointer').addClass('magenta_pointer');
			}
		},
		function() {
			if ($(this).hasClass('active'))
			{
				return;
			}
			var el_span = $(this).find('span');
			if (el_span.length)
			{
				el_span.removeClass('magenta_pointer').addClass('blue_pointer');
			}
		}
	);
});

function toggle_menu_item(id)
{
	var el = $('#cat_ul_'+id);
	if (!el.length)
	{
		return;
	}
	if (el.hasClass('hidden'))
	{
		el.removeClass('hidden');
	}
	else
	{
		el.addClass('hidden');
	}
} // toggle_menu_item
