$(document).ready(function(){
	$('li.navItem').hover(
		function() {
			$('ul', this).animate({
				height: 'toggle'
			  }, {
				duration: 250, 
				specialEasing: {
				  height: 'linear'
				}, 
				complete: function() {
					//$(this).parent().addClass('hover');
				}
			  });
  			//$('ul', this).css('display', 'block');
		},
		function() {
			$('ul', this).animate({
				height: 'toggle'
			  }, {
				duration: 250, 
				specialEasing: {
				  height: 'linear'
				}, 
				complete: function() {
				  //$(this).parent().removeClass('hover');
				}
			  });
			//$('ul', this).css('display', 'none');
		});
});
