/* File Name:	jsRandomImage.js
   File Type:	JScript
   Author:	Darren Cruise @ CruzyDesigns.com
   Copyright:	© 2004 G.R. Paret Realty. All rights reserved.
   Date:	April 3, 2004
   Description:	This script changes the splash page image each time the
		user loads the web site in their internet browser.
   ----------------------------------------------------------------------*/

<!-- Begin RandomImage Code 

// Computer generates a random number.
number=Math.round(Math.random()*17)+1

// Computer compares number it picked.
if(number==1)
{
  var picture="<img src='picRandomImage01.jpg' height=135 width=169 align=top>"
}
else if(number==2)
{
  var picture="<img src='picRandomImage02.jpg' height=135 width=169 align=top>"
}
else if(number==3)
{
  var picture="<img src='picRandomImage03.jpg' height=135 width=169 align=top>"
}
else if(number==4)
{
  var picture="<img src='picRandomImage04.jpg' height=135 width=169 align=top>"
}
else if(number==5)
{
  var picture="<img src='picRandomImage05.jpg' height=135 width=169 align=top>"
}
else if(number==6)
{
  var picture="<img src='picRandomImage06.jpg' height=135 width=169 align=top>"
}
else if(number==7)
{
  var picture="<img src='picRandomImage07.jpg' height=135 width=169 align=top>"
}
else if(number==8)
{
  var picture="<img src='picRandomImage08.jpg' height=135 width=169 align=top>"
}
else if(number==9)
{
  var picture="<img src='picRandomImage09.jpg' height=135 width=169 align=top>"
}
else if(number==10)
{
  var picture="<img src='picRandomImage10.jpg' height=135 width=169 align=top>"
}
else if(number==11)
{
  var picture="<img src='picRandomImage11.jpg' height=135 width=169 align=top>"
}
else if(number==12)
{
  var picture="<img src='picRandomImage12.jpg' height=135 width=169 align=top>"
}
else if(number==13)
{
  var picture="<img src='picRandomImage13.jpg' height=135 width=169 align=top>"
}
else if(number==14)
{
  var picture="<img src='picRandomImage14.jpg' height=135 width=169 align=top>"
}
else if(number==15)
{
  var picture="<img src='picRandomImage15.jpg' height=135 width=169 align=top>"
}
else if(number==16)
{
  var picture="<img src='picRandomImage16.jpg' height=135 width=169 align=top>"
}
else if(number==17)
{
  var picture="<img src='picRandomImage17.jpg' height=135 width=169 align=top>"
}
else if(number==18)
{
  var picture="<img src='picRandomImage18.jpg' height=135 width=169 align=top>"
}

// Computer displays picture to web page.
document.write(picture)

// End RandomImage Code -->