Also if you add this (you may have to mess with the position)
background-position: top-left;
background-attachment:fixed
it will make your background image static so that when you scroll it only scrolls everything on top of the image. Like this:
http://www.d2rclan.com/index.php?page=0So the code above with the added code would be:
<style type="text/css">
body
{
background-image:url('http://deliciousghost.com/wp-content/uploads/2008/04/smiley.jpg');
background-position: top-left;
background-attachment:fixed;
}
</style>