function placeImages()
{
     $('#archer').css('top', $('#archer_anchor').offset().top - 182);
     $('#archer').css('display', 'block');
     $('#drunken').css('top', $('#drunken_anchor').offset().top - 50);
     $('#drunken').css('left', $('#drunken_anchor').offset().left + 20);
     $('#drunken').css('display', 'block');
}

$(window).resize(function() {
        placeImages();
});

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

