var menu = {
    init: function() {
	$(document).ready(function() {

	    $('#nav li').hover(function(){
		$(this).find('.level2').show();
	    });

	    $('#nav li').mouseleave(function(){
		$(this).find('.level2').hide();
	    });
	});
    }
}


