my_pics=new Array();

my_pics[0]='img/topimage1.jpg';
my_pics[1]='img/topimage2.jpg';
my_pics[2]='img/topimage3.jpg';
my_pics[3]='img/topimage4.jpg';
my_pics[4]='img/topimage5.jpg';
my_pics[5]='img/topimage6.jpg';
my_pics[6]='img/topimage7.jpg';
my_pics[7]='img/topimage8.jpg';
my_pics[8]='img/topimage9.jpg';

a=Math.floor(Math.random()*my_pics.length);

document.write('<style type="text/css">');
document.write('div#topimage{');
document.write('background-image:url("'+my_pics[a]+'");');
document.write('background-position:top;');
document.write('background-repeat:no-repeat;');
document.write('}');
document.write('</style>');



