/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

$(document).ready(function(){
    $('#menulevel1 ul li').each(function(){
       
	    	$(this).mouseenter(function(){
	            $(this).children('ul').show();
	    	});
	    	
	    	$(this).mouseleave(function(){
	     	   $(this).children('ul').fadeOut();
	        })
	    
    });
});
