$(document).ready(function() {
	
	$("#art-main").css("display", "none");

    $("#art-main").fadeIn(1000);
    
	/*$("a").click(function(event){
		event.preventDefault();
		linkLocation = this.href;
		$("#art-main").fadeOut(1000, redirectPage);		
	});*/
		
	function redirectPage() {
		window.location = linkLocation;
	}
	
});

