// ************************
// *** animacje JD menu ***
// ************************

function onAnimateFadeInOut(show) {
    if (show) {
        $(this).hide().fadeIn('normal');
    } else {
        $(this).fadeOut('normal');
    }
}

function onAnimateSlideUpDown(show) {
    if (show) {
        $(this).hide().slideDown('fast');
    } else {
        $(this).slideUp('fast');
    }
}

function onAnimateSlideLeftRight(show) {
    if (show) {
        $(this).hide().animate({width: 'show'}, 'fast');
    } else {
        $(this).animate({width: 'hide'}, 'fast');
    }
}

function onAnimateShowHide(show) {
    if (show) {
        $(this).hide().show('normal');
    } else {
        $(this).hide('normal');
    }
}

// ***********************
