jQuery(document).ready(function(){

  //first-submenu-layer
  jQuery("div.welcomeMenu0>ul>li").mouseenter(function(){
//    jQuery(this).children("ul").fadeIn();
    jQuery(this).children("ul").css("display","block");
  });

  jQuery("div.welcomeMenu0>ul>li").mouseleave(function(){
    //jQuery(this).children("ul").fadeOut();
    jQuery(this).children("ul").css("display","none");
  });

  //second-submenu-layer
  jQuery("div.welcomeMenu0>ul>li>ul>li").mouseenter(function(){
    //jQuery(this).children("ul").fadeIn();
    jQuery(this).children("ul").css("display","block");
  });

  jQuery("div.welcomeMenu0>ul>li>ul>li").mouseleave(function(){
    // jQuery(this).children("ul").fadeOut();
    jQuery(this).children("ul").css("display","none");
  });

  //pkw-menu start page
  jQuery("div.special2Menu0>ul>li").mouseenter(function(){
//    jQuery(this).children("ul").fadeIn();
      jQuery(this).children("ul").css("display","block");
  })

  jQuery("div.special2Menu0>ul>li").mouseleave(function(){
//    jQuery(this).children("ul").fadeOut();
    jQuery(this).children("ul").css("display","none");

  })

  jQuery("div.special2Menu0>ul>li>ul>li").mouseenter(function(){
    jQuery(this).children("img").css("display", "block");
  });

  jQuery("div.special2Menu0>ul>li>ul>li").mouseleave(function(){
    jQuery(this).children("img").css("display", "none");
  });
  
  // flyout @ main menu 
  jQuery("div.welcomeMenu0>ul>li>ul>li>ul>li").mouseenter(function(){
    jQuery(this).children("img").css("display", "block");
  });
  
  jQuery("div.welcomeMenu0>ul>li>ul>li>ul>li").mouseleave(function(){
    jQuery(this).children("img").css("display", "none");
  });

  //modell submenu (subpages)
  jQuery("div#side_menu_box>ul>li").mouseenter(function(){
//    jQuery(this).children("ul").fadeIn();
    jQuery(this).children("ul").css("display","block");
  });

  jQuery("div#side_menu_box>ul>li").mouseleave(function(){
//    jQuery(this).children("ul").fadeOut();
    jQuery(this).children("ul").css("display","none");
  });

  jQuery("div#side_menu_box>ul>li>ul>li").mouseenter(function(){
    jQuery(this).children("img").css("display", "block");
  });

  jQuery("div#side_menu_box>ul>li>ul>li").mouseleave(function(){
    jQuery(this).children("img").css("display", "none");
  });
});

