$(document).ready(function(){
	$('#vhmenu li').mouseover(function(){
		$(this).find('ul:first').animate({
			width:'show',
			height:'show'
		},200);
		$(this).addClass('hover');
		$(this).find('a:first').css('color','#c00');
	}).mouseleave(function(){
		$(this).find('ul:first').animate({
			width:'hide',
			height:'hide'
		},150);
		$(this).removeClass('hover');
		$(this).find('a:first').css('color','');
	});
	
	$('.navbar li').mouseover(function(){
		$(this).find('ul:first').slideDown(100);
		$(this).addClass('hover');
	}).mouseleave(function(){
		$(this).find('ul:first').slideUp(100);
		$(this).removeClass('hover');
	});
});
