//Firefox logging
var debugging = true;
if (typeof console == "undefined") var console = { log: function () { } };
else if (!debugging || typeof console.log == "undefined") console.log = function () { };


$(window).load(function () {
    $('#Logo').click(function () {
        window.location.replace("/");
    });



    $('#Splash').click(function () {
        window.location.replace("http://www.danskeboern.dk/koeb-bogen.aspx");
    });

    

});
