$(document).ready(function() {
   /* --- Main Menu --- */
   $(function() {
        $('#menu').lavaLamp();
    });
    /* --- END Main Menu --- */

    /* --- Submenu --- */
    $('#submenu ul li span').each(function(){
        $(this).click(function(){
            if($(this).parent('li').children('ul').css('display') == 'none'){
                $(this).parent('li').children('ul').slideDown();
            }else if($(this).parent('li').children('ul').css('display') == 'block'){
                $(this).parent('li').children('ul').slideUp();
            }
        });
    });
    $('.current').parent('ul').show();
    /* --- END Submenu --- */

    /* --- News --- */
    var newsoptions = {
      firstname:"news_container",
      secondname:"showhere",
      thirdname:"news_display",
      fourthname:"news_button",
      newsspeed:'8000',
      effectis: 0,
      mouseover: false,
      imagedir: 'fileadmin/templates/grssgo/img/'
    }
    $.init_news(newsoptions);
    /* --- END News --- */

    /* --- Status --- */
    $('#status_link').click(function(){
        $('#status').fadeIn();
    });
    $('#status_close').click(function(){
        $('#status').fadeOut();
    });
    /* --- END Status ---*/
 });

