$(document).ready(function() {
    $("body").css("display", "none");
    
	$("body").fadeIn(500);
 
    $("h6 a:link").click(function(event){
        event.preventDefault();
        linkLocation = this.href;
        $("body").fadeOut(500, redirectPage);
    });
 
    function redirectPage() {
        window.location = linkLocation;
    }
});
