	$(document).ready(function() {
		if(!$("body").hasClass("home")) {
			console.log("fade in called");
		    $("#content").css("display", "none");
 
		    $("#content").fadeIn(500);
 
		    $("a.transition").click(function(event){
		        event.preventDefault();
		        linkLocation = this.href;
		        $("#content").fadeOut(500, redirectPage);
		    });
 
		    function redirectPage() {
		        window.location = linkLocation;
		    }
		}
	});

