(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');});
				$('ul:first', this).slideToggle(500, function(){ if ($.browser.msie) this.style.removeAttribute('filter');});
			},
			out: function(){
				$(this).removeClass('mhover');
				$('ul:first', this).animate({opacity:'hide'}, 500, 'linear', function(){if ($.browser.msie) this.style.removeAttribute('filter');});
			},
			timeout:500
		};
		//$('div#mainmenu > div#pmainmenu > ul > li > ul').each(function(){
			//$(this).css('bottom', ($(this).height() + 38).toString() + 'px');
		//});
		$('div#mainmenu > ul > li').hoverIntent(config);
//		$('div#jflanguageselection li a').css('border-right','1px solid #fff');
//		$('div#jflanguageselection li:last-child a').css('border-right','0');
//		$('div#mainmenu > ul > li > a').css('border-right','1px solid #fff');
//		$('div#mainmenu > ul > li:last-child > a').css('border-right','0');
		//$('div#footermenu ul > li > ul > li > ul > li:not(:last-child)').append(' .');
		//$('div.flatmenu div.level_1:not(.last), div.flatmenu div.level_2:not(.last)').after('. ');
	});
})(jQuery);

