(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 > ul > li').hoverIntent(config);
		$('a.fancybox').fancybox({
			width:800,
			height:700,
			centerOnScroll:true
		});
	});
})(jQuery);

