$(document).ready(function() {
    //<load logo>
        var img = new Image();
        
        $(img).load(function () {
            $(this).hide();

            $('#logo_anchor').removeClass('loading').html(this);
            $(this).fadeIn(0);
        })

        .error(function () {
        })

        .attr('src', 'images/logo.png');
    //</load logo>
    
    
    //<load picture frame image logo>
        var img = new Image();
        
        $(img).load(function () {
            $(this).hide();

            $('#picture_frame2').removeClass('loading').html(this);
            $(this).fadeIn(1000);
        })

        .error(function () {
        })

        .attr('src', 'images/picture-frame2.png');
    //</load picture frame image logo>
});
