//random number to pick the bg set the number 
var imgRand=Math.floor(Math.random()*3);

//repeate for each bg seting source for each image
//should realy throw bg's into an array and make a function
	if (imgRand ==0){
	var rndImg = '<td width="76%" align="right" background="themes/topbg01.jpg"></td>';
	document.write(rndImg);
	}
	
	if (imgRand ==1){
	var rndImg = '<td width="76%" align="right" background="themes/topbg02.jpg"></td>';
	document.write(rndImg);
	}
	
	if (imgRand ==2){
	var rndImg = '<td width="76%" align="right" background="themes/topbg03.jpg"></td>';
	document.write(rndImg);
	}
	
//repeate for each bg seting source for each image
//should realy throw bg's into an array and make a function	