<!--
// ==============================================
// Copyright 2003 by jsCode.com
// Source: jsCode.com
// Author: etLux
// Free for all; but please leave in the header.
// ==============================================

var theImages = new Array() // do not change this

theImages[0] = 'images/home/n01.jpg'
theImages[1] = 'images/home/n02.jpg'
theImages[2] = 'images/home/n03.jpg'
theImages[3] = 'images/home/n04.jpg'
theImages[4] = 'images/home/n05.jpg'
theImages[5] = 'images/home/n06.jpg'
theImages[6] = 'images/home/n07.jpg'
theImages[7] = 'images/home/n08.jpg'
theImages[8] = 'images/home/n09.jpg'




// ======================================
// do not change anything below this line
// ======================================

var j = 0
var p = theImages.length;

var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}

var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+theImages[whichImage]+'">');
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
//-->
