jQuery(document).ready(function () {
    // do something here
    $("html").hide();
    $("html").fadeIn(1500);
    $(".menu-main a").click(function () {
        $("#contentplaceholder").fadeOut(500);
    }
    )

});