$(document).ready(function() {
    //Разворачиваем меню
	$('.shop-menu .plus').live('click',function(){
		
		if($.browser.msie){
			m = $(this).next().next();
		}
		else{
			m = $(this).parent().next('ul');
		}
		
		$(m).show('slow');
		//$(this).queue(function(){
			$(this).html('-');
			$(this).removeClass('plus');
			$(this).addClass('minus');
		//});
	});
	
	//Сворачиваем меню
	$('.shop-menu .minus').live('click',function(){
		if($.browser.msie){
			m = $(this).next().next();
		}
		else{
			m = $(this).parent().next('ul');
		}
		
		$(m).hide('slow');
		//$(this).queue(function(){
			$(this).html('+');
			$(this).removeClass('minus');
			$(this).addClass('plus');
	//	});
	});
});
function show_close(cat_id)
{
	if($('#curr_cat').text()!='')
	{
		$('#cont-'+$('#curr_cat').text()).hide('slow');		
	}
	if(($('#curr_cat').text()!=cat_id) || ($('#curr_cat_shown').text()=='false'))
	{
		$('#cont-'+cat_id).show('slow');
		$('#curr_cat_shown').text('true');
		$('#img1-'+cat_id).hide();
		$('#img2-'+cat_id).show();		
	}
	else
	{ $('#curr_cat_shown').text('false'); $('#img2-'+cat_id).hide(); $('#img1-'+cat_id).show(); }
	$('#curr_cat').text(cat_id);	
}
