var url = "http://shop.cck-print-media.de/";
if (document.referrer == url){
   $(document).ready(function() {
    $("body").css("display", "none");
    $("body").fadeIn(1000);
    });
   
};

$(document).ready(function() {

    $("a.ws").click(function(event){
        event.preventDefault();
        linkLocation = this.href;
        $("body").fadeOut(1000, redirectPage);
    });

    function redirectPage() {
        window.location = linkLocation;
    }
});

