$(document).ready(function() {
	
	$("body").css("display", "none");

    $("body").fadeIn(1000);
    
	$("a").click(function(event){
		event.preventDefault();
		  path = this.href;
		  if (((path.indexOf('#cut') > 0) || (path.indexOf('#comment') > 0)) || (path.indexOf('#') <= 0) || (path.indexOf('jpg') <= 0)) {
			 	linkLocation = this.href;
		    		$("body").fadeOut(1000, redirectPage);		
		  }	
		  else {$("body")}
	});
		
	function redirectPage() {
		window.location = linkLocation;
	}
	
});

