$(function() {
	$(".fade-content").css("display", "none");
    $(".fade-content").fadeIn(500);
	
 
    $("a.transition").click(function(){
     //   event.preventDefault();
        linkLocation = this.href;
		$(".fade-content").fadeOut(500, redirectPage);
		return false;
    });
 
    function redirectPage() {
        window.location = linkLocation;
    }
});
