warobushek, х/з как там в jQuery... Но можно сделать и на старом, добром js вот так
<!DOCTYPE html>
<html>
<head>
<style>
div {
width: 200px;
height: 100px;
border: 1px solid;
background: url('http://javascript.ru/forum/images/smilies/smile.gif') no-repeat;
background-position: 0 0;
}
</style>
<script>
function Go() {
document.getElementById("box").style.backgroundPosition='right bottom'
}
</script>
</head>
<body>
<div id='box'></div>
<input type='button' value='Go' onclick='Go()' />
</body>
</html>