$(document).ready(function() {
    posBackgroundImage();
});

$(window).resize(function() {
    posBackgroundImage();
});

function posBackgroundImage() {
    var posLeftOffset = $(".content").offset().left;
    var backgroundWidth = $(window).width() - posLeftOffset;
    if (backgroundWidth < $(".content").width()) {
        backgroundWidth = $(".content").width();
    }
    else {
        if ($("#header").offset().left + $(".content").width() < 800) {
            backgroundWidth = $("#header").offset().left + $(".content").width();
            //alert($("#header").offset().left);
        }
        else {
            backgroundWidth = 800;
        }
    }
    $(".container .bg_image:first").css({ left: posLeftOffset, padding: "56px 0 0 0", width: backgroundWidth });
}
