(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', this).slideToggle(125, 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 > ul').each(function(){
			//$(this).css('bottom', ($(this).height() + 38).toString() + 'px');
		//});
		$('div#mainmenu > ul > li').hoverIntent(config);
		$('div#left li.level_1 a').prepend('&raquo; ');
//		$('div#content div#page a').prepend('&raquo; ');
//		$('div#content div.blog a').prepend('&raquo; ');
	});
})(jQuery);

