The best way to stretch an image to fit the background of a page is to use the CSS 3 property, background-size:
body {
background: url(bgimage.jpg) no-repeat;
background-size: 100%;
}
But it only work on Safari 5 and Opera 10. (http://webdesign.about.com/od/css3/f/blfaqbgsize.htm)