You can use CSS to display a non-repeating background image....
<style type="text/css">
<!--
.background { background-attachment: fixed; background-image:
url(imagename); background-repeat: no-repeat; background-position: left top}
-->
</style>
The parentheses are included around the image location and name.
Norman