jQuery(document).ready(function() {
    
    $('#body-background').html('<img src="images/bkgd_1.jpg" alt="Background Image" />');
    
    $("#body-background").ezBgResize();

    $(window).bind("resize", function(){
        $("#body-background").ezBgResize();
    });
});