$(
	function()
	{
		if($.browser.msie)
			return;
		$('#maincontent, #slideshowwrapp').css('display', 'none');
		$('#maincontent, #slideshowwrapp').fadeIn(500);
		$('a.mleft, a.mright').click(function(event){
			event.preventDefault();
			linkLocation = this.href;
			$('#maincontent, slideshowwrapp').fadeOut(500, redirectPage);
		});
	}
);

function redirectPage() {
			window.location = linkLocation;
		}

