/*****************************************************************************
 * Filename: jquery.menu.js
 * Description: switches the menu if hover
 *
 * @version: 1.0 
 * @revision: 
 * @created:   Mon 21 Feb 2011 12:04:42 CET
 * 
 * @author: Christian Paier <christian.paier@foon.at> 
 * @last modified:  Mon 21 Feb 2011 12:04:42 CET
 *
 * Revision History
 * Date  Author  Remarks 
 * Feb 21 2011 CP File created
 *****************************************************************************/

jQuery(document).ready(function(){
    jQuery('div.welcomeMenu0>ul>li').mouseover(function(){
      jQuery('div.welcomeMenu0>ul ul').css("display", "none");
      jQuery(this).children('ul').css("display", "block");
    });
    
    jQuery('div.welcomeMenu0>ul').mouseleave(function(){
      jQuery('div.welcomeMenu0>ul>li').children('ul').css("display", "none");
      jQuery('div.welcomeMenu0>ul>li.upper_menuActive1_li>ul').css('display', 'block');
    });
});

