$(function(){
	$('.dropSubMenu').css({'height':'1px'});
	$('.topMenuLi').hover(function() {
	$(this).find('.topMenuLink').addClass('onLink');
	$(this).find('.dropSubMenu').show();
	$(this).find('.dropSubMenu').animate({'height':(parseInt($(this).find('.dropSubMenu ul').outerHeight()))+'px' })
	}, function() {
	$(this).find('.topMenuLink').removeClass('onLink');
	$(this).find('.dropSubMenu').stop();
	$(this).find('.dropSubMenu').hide();
	$(this).find('.dropSubMenu').css({'height':'1px'})
	});
})
























