

$(function() {
	
	$('.mask').css({ height: '0px' });
	
	$('#nav_main li a').hover(function() {
//		$(this).css({ height: '200px' });
		$(this).parent().children('.mask').children('ul').animate({ top: '0px' }, 300);
		$(this).parent().children('.mask').animate({ height: '155px' }, 300);
	}, function() {
//		$(this).css({ height: 'auto' });
		//$(this).parent().children('.mask').children('ul').animate({ top: '-200px' }, 300);
	});
	
	$('#nav_main li').hover(function() {
	
	}, function() {
		$(this).children('.mask').children('ul').animate({ top: '-200px' }, 300);
		$(this).children('.mask').animate({ height: '0px' }, 300);
	});
	
	$(window).bind("load", function() {
		
	});
	
	$(window).bind("resize", function() {
		
	});
});
