/**
 * Background placement
 *
 * @author Marcin Gil <mg@ovos.at>
 */

var bg = {id: "#bg", top: -90, width: 664, left: 730};

var updateSize = function()
{
    $(bg.id).css('width', $('body').width() - bg.left);
}

$(document).ready
(
    function()
    {
        updateSize();

        $(window).resize(updateSize);
    }
);

