background-color:#FFCC80;
background-image:url(/img/eg_bg_desert.jpg);
background-repeat:no-repeat;
background-attachment:fixed;
<script type="text/javascript">
function changePosition()
document.body.style.backgroundPositionY="bottom";
<input type="button" onclick="changePosition()" value="Change background-image's y-position" />
<p><b>Note:</b> For this to work in Mozilla, the background-attachment property must be set to "fixed".</p>