// JavaScript Document

var start   = 0; 
var current = start;
var end = 8;
var theImages = new Array() 

theImages[0] = 'banner_copladem01.jpg'
theImages[1] = 'banner_copladem02.jpg'
theImages[2] = 'banner_copladem03.jpg'
theImages[3] = 'banner_copladem04.jpg'
theImages[4] = 'banner_copladem05.jpg'
theImages[5] = 'banner_copladem06.jpg'
theImages[6] = 'banner_copladem07.jpg'
theImages[7] = 'banner_copladem08.jpg'
theImages[8] = 'banner_copladem09.jpg'

function randOrd(){
	return (Math.round(Math.random())-0.5);
} 

theImages.sort( randOrd );

function showImage(){
	document.write('<img src="../../banners/'+theImages[0]+'" width="720" height="132" />');
}
