/*
Watermark Backgound Image Script- 
© Dynamic Drive (www.dynamicdrive.com)
For full source code, installation instructions,
100's more DHTML scripts, and Terms Of
Use, visit dynamicdrive.com
*/

/*
Modified by Lee Lloyd (www.datanomicon.co.uk)
to be called as a function to set/not set a background image
depending upon the page being viewed

to use include in the relevant html file:

	//<HEAD>
	//<script language="JavaScript" src="setbg.js"></script>
	// ..
	//<BODY ... onload="setBg()">
*/

function setBg()
{
	if (document.all)
	{
		document.body.style.cssText="background-image: url(images/aquatic.jpg);"
	}
}
