var catalogSubMenu = new Array();

function smLevel1In(id) {
    $('#smb1_left' + id).stop(true, true).fadeOut();
    $('#smb1_right' + id).stop(true, true).fadeOut();
    $('#smb1_left' + id).css('display', 'block');
    $('#smb1_right' + id).css('display', 'block');    
}

function smLevel1Out(id) {
    $('#smb1_left' + id).fadeOut(300);
    $('#smb1_right' + id).fadeOut(300);
}

function smLevel2Out(id) {
    document.getElementById('sml2_left' + id).style.backgroundImage = 'none';
    document.getElementById('sml2_right' + id).style.backgroundImage = 'none';
}

 
function smLevel2In(id) {
    document.getElementById('sml2_left' + id).style.backgroundImage = "url('http://funburg.ru/images/submenu_2_left.gif')";
    document.getElementById('sml2_right' + id).style.backgroundImage = "url('http://funburg.ru/images/submenu_2_right.gif')";
}

function smLevel2Out(id) {
    document.getElementById('sml2_left' + id).style.backgroundImage = 'none';
    document.getElementById('sml2_right' + id).style.backgroundImage = 'none';
}

function switchCatalogSm(id) {    
    if(catalogSubMenu[id]['visible']) {
        catalogSubMenu[id]['visible'] = false;
        
        if(catalogSubMenu[id]['active']) {
            document.getElementById('sm_switch' + id).src = 'http://funburg.ru/images/active_submenu_down.gif';    
        }
        else {
            document.getElementById('sm_switch' + id).src = 'http://funburg.ru/images/submenu_down.gif';
        }
        
        $('#csm' + id).stop();
        $('#csm' + id).css('padding-bottom', '0px');
        $('#csm' + id).animate({height: '0px'}, 300, 'easeOutExpo', function() {$('#csm' + id).css('display', 'none');});  
    }
    else {
        catalogSubMenu[id]['visible'] = true;
        
        if(catalogSubMenu[id]['active']) {
            document.getElementById('sm_switch' + id).src = 'http://funburg.ru/images/active_submenu_up.gif';    
        }
        else {
            document.getElementById('sm_switch' + id).src = 'http://funburg.ru/images/submenu_up.gif';
        }  
        
        $('#csm' + id).stop();
        $('#csm' + id).css('height', '0px');
        $('#csm' + id).css('display', 'block');
        $('#csm' + id).css('padding-bottom', '0px');
        
        var csm_height = $('#csm' + id + 'ul').height() + 9;
        
        $('#csm' + id).animate({height: csm_height}, 300, 'easeOutExpo');
    }
}


