window.onresize = allSticksReposition;

var offsetLeft = 0;

function stickReposition()
{
    var sticker = $('#sticker');

    var winWidth = 0;

    if(document.body.clientWidth != null) {
            winWidth = document.body.clientWidth + 18;
    } else {
            winWidth = window.innerWidth;
    }

    if(!offsetLeft) {
        offsetLeft = parseInt(sticker.css('left'));
    }

    sticker.css('left', (parseInt(winWidth / 2) + offsetLeft));
}


function stickReposition2()
{
    var sticker = $('.promoSticker');

    var winWidth = 0;

    if(document.body.clientWidth != null) {
            winWidth = document.body.clientWidth + 18;
    } else {
            winWidth = window.innerWidth;
    }

    if(!offsetLeft) {
        offsetLeft = parseInt(sticker.css('left'));
    }

    sticker.css('left', (parseInt(winWidth / 2) + offsetLeft));
}

$(document).ready(function() {
    allSticksReposition();
});

function allSticksReposition()
{
    stickReposition();
    stickReposition2();
}
