function placesticker()
{
    var viewportwidth = $(window).width();
    $('#sticker').css( 'left', viewportwidth / 2 + 320 );
    $('#sticker').css( 'visibility', 'visible');
}

$(document).ready(function() {placesticker();});
$(window).resize(function() {placesticker();});

