/* <![CDATA[ */
$(document).ready(function(){
    $('.main_menu_item').hover(function(){
        var elem = $(this).children('.submenu');
        clearTimeout($(this).data('timeout'));
        elem.animate({top:"-" + parseInt( parseInt(elem.height()) + 7 )},{queue:false,speed:400}); 
    }, function() {
        var elem = $(this).children('.submenu');
        $(this).data('timeout', setTimeout(function() { elem.animate( {top:0},{queue:false,speed:400})  }, 1000));
    });

    jQuery('.pics').cycle({ 
        fx:      'fade', 
        speed:    3500, 
        timeout:  2000,
        random:   1
    });

    $('#menu_image').css('background-image', 'none');
}); // close document.ready

    
var toggle = function(parentId, element)
{
        //alles auf anfang
    $('.hidden').hide();
    $('.visible').show();    
    
        //anzeige anpassen
    if( $(element).hasClass('more_link') )
    {
        $('div#wrapper_' + parentId + ' .hidden').each(function(){ $(this).show()} );
        $('div#wrapper_' + parentId + ' .visible').each(function(){ $(this).hide()} );
        
    }else if( $(element).hasClass('back_link') ){
        $('div#wrapper_' + parentId + ' .visible').each(function(){ $(this).show()} );
        $('div#wrapper_' + parentId + ' .hidden').each(function(){ $(this).hide()} );    
    }
}

/* ]]> */
