
<!--

/*
Random Content Script- By JavaScript Kit(http://www.javascriptkit.com) 
Over 200+ free JavaScripts here!
*/

function random_content(){
var mycontent=new Array()
//specify random content below.
mycontent[1]='<img src="display/Random1.JPG" width="300" height="250">'
mycontent[2]='<img src="display/Random2.JPG" width="300" height="250">'
mycontent[3]='<img src="display/Random3.JPG" width="300" height="250">'
mycontent[4]='<img src="display/Random4.JPG" width="300" height="250">'
mycontent[5]='<img src="display/Random5.JPG" width="300" height="250">'
mycontent[6]='<img src="display/Random6.JPG" width="300" height="250">'
mycontent[7]='<img src="display/Random7.JPG" width="300" height="250">'
mycontent[8]='<img src="display/Random8.JPG" width="300" height="250">'
mycontent[9]='<img src="display/Random9.JPG" width="300" height="250">'
mycontent[10]='<img src="display/Random10.JPG" width="300" height="250">'
mycontent[11]='<img src="display/Random11.JPG" width="300" height="250">'
mycontent[12]='<img src="display/Random12.JPG" width="300" height="250">'
mycontent[13]='<img src="display/Random13.JPG" width="300" height="250">'
mycontent[14]='<img src="display/Random14.JPG" width="300" height="250">'


var ry=Math.floor(Math.random()*mycontent.length)
if (ry==0)
ry=1
document.write(mycontent[ry])
}
random_content()
//-->

