There's actually already a bg image repeating (the gradient).
To change it, overwrite the image for the theme you're using (ex: /templates/pp_joomla_j1.5/images/theme1/body.png)
then you need to change the css from repeating in the x direction to the x and y directions
edit /templates/pp_joomla_j1.5/css/theme1.css
change
Code:
background: url(../images/theme1/body.png) repeat-x #333333;
to
Code:
background: url(../images/theme1/body.png);
(we removed the bg color so it will be transparent and we removed repeat-x so it will repeat in the x and y, which is the css default so it's not needed)