// Create arrays to contain all the values
// for links and image locations
link = new Array
image = new Array
altText = new Array

link[1]="http://www.thetoyboat.com/index.php?main_page=product_info&cPath=72&products_id=185"
image[1]="http://www.thetoyboat.com/images/homepage/babysub_L.jpg"
altText[1]="Baby Sub"

link[2]="http://www.thetoyboat.com/index.php?main_page=product_info&cPath=66&products_id=698"
image[2]="http://www.thetoyboat.com/images/homepage/frenchcompassboatB.jpg"
altText[2]="Compass - 15 inch Sailboat"

link[3]="http://www.thetoyboat.com/index.php?main_page=product_info&products_id=208"
image[3]="http://www.thetoyboat.com/images/homepage/meninboat_L.jpg"
altText[3]="Men on a Raft"

link[4]="http://www.thetoyboat.com/index.php?main_page=product_info&cPath=66&products_id=366"
image[4]="http://www.thetoyboat.com/images/homepage/rockingdory_L.jpg"
altText[4]="Rocking Dory"

//link[3]="http://www.thetoyboat.com/index.php?main_page=product_info&products_id=193"
//image[3]="http://www.thetoyboat.com/images/homepage/divesub_L.jpg"
//altText[3]="Diving Sub"

//link[5]="http://www.thetoyboat.com/index.php?main_page=product_info&products_id=367"
//image[5]="http://www.thetoyboat.com/images/homepage/sevisailor.jpg"
//altText[5]="Jumping Jack Sailor"



// Create a random number between one and four
random_num = (Math.round((Math.random()*3)+1))


// Write a link and images with random array
document.write("<a href=\"" + link[random_num] + "\">");
document.write("<img src=\"" + image[random_num] + "\" border=\"0\" alt=\"" + altText[random_num] + "\" title=\"" + altText[random_num] + "\"></a>");