$(document).ready(function()
{
	$('.active').parent().show();

	$('.catalog_menu a').click(function(){
		if ($(this).parent().children('ul').length > 0 )
		{
			$('ul.catalog_menu>li>ul').slideUp();
			$(this).parent().children('ul').slideDown();
			return false;
		}
	})
	
	
	$('ul.left-menu li ul li.opened').parent().parent().addClass('opened').css('paddingBottom', '0px');
	$('ul.left-menu li.opened').parent().slideDown();

	$('ul.left-menu>li>a').click(function(){
        if ($(this).parent().children('ul').length > 0 )
        {
            $('ul.left-menu>li>ul').slideUp();
            $('ul.left-menu>li').css('paddingBottom', '10px');
            $(this).parent().css('paddingBottom', '0px');
            $(this).parent().children('ul').slideDown();
        
            return false;
        }
	});
	
	$('ul.top-menu>li').hover(
        function(){ $(this).children('div').show().children('div').show(); },
        function(){ $(this).children('div').hide().children('div').hide(); }
    );

});