jQuery(function($){
	$('#gnb li').bind('mouseenter',function(){
		$(this).children('ul').fadeIn();
	}).bind('mouseleave',function(){;
		$(this).children('ul').hide();
	});
});


