// JavaScript Document

var start   = 0; 
var current = start;
var end = 4;
var theImages = new Array() 

theImages[0] = 'banner01.jpg'
theImages[1] = 'banner02.jpg'
theImages[2] = 'banner03.jpg'
theImages[3] = 'banner04.jpg'
theImages[4] = 'banner05.jpg'


function randOrd(){
	return (Math.round(Math.random())-0.5);
} 

theImages.sort( randOrd );

function showImage(){
	document.write('<a href="index.asp"><img src="../banners/'+theImages[0]+'" width="924" height="223" border="0"/></a>');
}
