$(document).ready(function(){
	$('li.navItem').hover(
		function() {
			if($.browser.msie && $.browser.version=="6.0")
			{
				$('ul', this).css('display', 'block');
				$(this).addClass('hover');
			}
			else
			{
				$(this).addClass('hover');
				$('ul', this).animate({
					height: 'toggle'
				  }, {
					duration: 250, 
					specialEasing: {
					  height: 'linear'
					}, 
					complete: function() {
						//$(this).parent().addClass('hover');
					}
				  });
			}
		},
		function() {
			if($.browser.msie && $.browser.version=="6.0")
			{
				$('ul', this).css('display', 'none');
				$(this).removeClass('hover');
			}
			else
			{
				$('ul', this).animate({
					height: 'toggle'
				  }, {
					duration: 250, 
					specialEasing: {
					  height: 'linear'
					}, 
					complete: function() {
					  $(this).parent().removeClass('hover');
					}
				  });
			}
		});
});
