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

    $("body").fadeIn(2000);
    
	$("a.transition").click(function(event){
		$("body").fadeOut(1000, redirectPage);		
	});
    $("body").delay(2000).fadeOut(1000, redirectPage);	
		
    function redirectPage() {
        window.location = 'http://tagwerke.com/index.php';
    }
});

