
document.write('<table width="900" align="center">');
document.write('<tr><br>');
// rotating image number one
document.write('<td> ');
				var random = Math.random() ;
				var picnum = Math.round(random*10)+1;
document.write('<img src=images/home/'+picnum+'.jpg border=0>');
document.write('</a>');
document.write('</td>');
document.write('</tr>');
document.write('</table>');


