/* Desire Theme JavaScript */

function animatemenu() {
    //jQuery(".menu ul").css({display:"none"}); // Fix for opera
    jQuery(".menu ul li").hover(function() {
        jQuery(this).find('ul:first').css({visibility:"visible",display:"none"}).show(400);
    },
    function() {
        jQuery(this).find('ul:first').css({visibility:"hidden"});
    });
}

jQuery(document).ready(function() {
    animatemenu();
});

jQuery(document).ready(function() {
    jQuery('ul li:last-child').addClass('last');
});

function show(elem) {
    jQuery('#' + elem).slideDown('slow');
}

function hide(elem) {
    jQuery('#' + elem).slideUp('slow');
}

function toggle(showelem,hideelem1,hideelem2) {
    document.getElementById(hideelem1 + '-tab').style.backgroundColor = "#fcfcfc";
    document.getElementById(hideelem1 + '-tab').style.borderBottom = "1px #eee solid";
    document.getElementById(hideelem2 + '-tab').style.backgroundColor = "#fcfcfc";
    document.getElementById(hideelem2 + '-tab').style.borderBottom = "1px #eee solid";
    document.getElementById(showelem + '-tab').style.backgroundColor = "#fff";
    document.getElementById(showelem + '-tab').style.borderBottom = "0 none";
    
    hide(hideelem1);
    hide(hideelem2);
    show(showelem);
}
