

jQuery(document).ready(function(){
	jQuery('ul.gnb').hover(function(){
		jQuery('div.menu-back').stop().animate({
			height: '200px'}, 222);

	},function(){
		jQuery('div.menu-back').stop().animate({
			height: '34px'}, 222);
	});
});   
