/**
 * jQuery JavaScript Function
 *
 * This function animate the given element using show or hide functions.
 *
 * http://benjamin-butschko.de
 *
 * Copyright 2010, Benjamin Butschko
 *
 **/

// ################################################################################################################################
// NAVIGATION-SLIDER FOR MAINPAGE / MAINMENUE #####################################################################################
// ################################################################################################################################

function NaviSlider(func_div_id, func_link_id) {

    $(document).ready(function(){

        $("#" + func_link_id).click(function(){

            if( !$("#" + func_div_id).is(':visible') ) {

                $("#" + func_div_id).animate({ height: 'show', opacity: 'show' }, 'slow');

                return false;

            };

            // --

            if( $("#" + func_div_id).is(':visible') ) {

                $("#" + func_div_id).animate({ height: 'hide', opacity: 'hide' }, 'slow');

                return false;
            };

            // --

        })

    });

}

// ################################################################################################################################

