Вот код, когда открываешь окно, картинка отображается на нужной высоте, но если только меняешь размер окна, то картинка пропадает. Вроде написал так как вы подсказали.
$(document).ready(function(){
$('.end').css('background','url(images/end.gif) no-repeat 0 9px');
});
function doSomething() {
var width = $('.container').width();
var y = 41/2*Math.sin(6.28*width/475);
alert (width);
alert (y);
$('.end').css('background','url(images/end.gif) no-repeat 0 '+y+'px');
};
var resizeTimer = null;
$(window).bind('resize', function() {
if (resizeTimer) clearTimeout(resizeTimer);
resizeTimer = setTimeout(doSomething, 100);
});