// JavaScript Document







//random image selector



<!-- Hide from old browsers

var imagenumber = 5 ;

var randomnumber = Math.random() ;

var rand1 = Math.round( (imagenumber-1) * randomnumber) + 1 ;

images = new Array

images[1] = "Index_01_01.jpg"

images[2] = "Index_01_02.jpg"

images[3] = "Index_01_03.jpg"

images[4] = "Index_01_04.jpg"

images[5] = "Index_01_05.jpg"

var image = images[rand1];

var topimage = "<img width=\"778\" src=\"images/" + image + "\"border=\"0\" usemap=\"#Map\"><map name=\"Map\"><area shape=\"rect\" coords=\"6,68,227,209\" href=\"index.html\"></map>";

var subimage = "<img width=\"778\" src=\"../images/" + image + "\"border=\"0\" usemap=\"#Map\"><map name=\"Map\"><area shape=\"rect\" coords=\"6,68,227,209\" href=\"../index.html\"></map>";

var subsubimage = "<img width=\"778\" src=\"../../images/" + image + "\"border=\"0\" usemap=\"#Map\"><map name=\"Map\"><area shape=\"rect\" coords=\"6,68,227,209\" href=\"../../index.html\"></map>";



// -- End Hiding Here -->

