

jQuery(document).ready(function(){

    initMenus();
    
});

function initMenus(){
    if (document.location.href == "http://www.stomatech.ru/" || document.location.href == "http://stomatech.ru/") {
        jQuery("ul.menu li").parent().show();
    }
    
    jQuery("ul.menu li.active").parent().show();
	
    var button_menu = jQuery("div.moduletable_menu_left h3");
    button_menu.toggle(function(){
        jQuery(this).next().slideDown();
    }, function(){
        jQuery(this).next().slideUp();
    });
    
    return false;
}
