If you are only talking about the background image of the stones on the right side. You could try this:
Replace this:
Code:
body {
background-image: url();
background-repeat: no-repeat;
background-position: right-position;
}
With this:
Code:
body {
background: url(alfbg.gif) fixed no-repeat 100% 0;
margin: 0;
padding: 0;
}
Hope this helps.