(function($){
	$(document).ready(function(){
		config = {
			over: function(){
				$(this).addClass('mhover');
				$('ul', this).animate({height:'show'}, 125, 'linear', function(){ if ($.browser.msie) this.style.removeAttribute('filter');});
			},
			out: function(){
				$(this).removeClass('mhover');
				$('ul', this).animate({opacity:'hide'}, 250, 'linear', function(){if ($.browser.msie) this.style.removeAttribute('filter');});
			},
			timeout:500
		};
		$('div#mainmenu > div#pmainmenu > ul > li').hoverIntent(config);
	});
})(jQuery);

