<!--
	// please keep these lines on when you copy the source
	// made by: Nicolas - http://www.javascript-page.com

	var currentdate	= 0
	var core		= 0
	
	function StringArray (n) {
		this.length = n;
		for (var i =1; i <= n; i++) {
			this[i] = ' '
		}
	}
	
	image		= new StringArray(20)
	image[0]	= 'shell_bannerClip_01.jpg'
	image[1]	= 'shell_bannerClip_02.jpg'
	image[2]	= 'shell_bannerClip_03.jpg'
	image[3]	= 'shell_bannerClip_04.jpg'
	image[4]	= 'shell_bannerClip_05.jpg'
	image[5]	= 'shell_bannerClip_06.jpg'
	image[6]	= 'shell_bannerClip_07.jpg'
	image[7]	= 'shell_bannerClip_08.jpg'
	image[8]	= 'shell_bannerClip_09.jpg'
	image[9]	= 'shell_bannerClip_10.jpg'
	image[10]	= 'shell_bannerClip_11.jpg'
	image[11]	= 'shell_bannerClip_12.jpg'
	image[12]	= 'shell_bannerClip_13.jpg'
	image[13]	= 'shell_bannerClip_14.jpg'
	image[14]	= 'shell_bannerClip_15.jpg'
	image[15]	= 'shell_bannerClip_16.jpg'
	image[16]	= 'shell_bannerClip_17.jpg'
	image[17]	= 'shell_bannerClip_18.jpg'
	image[18]	= 'shell_bannerClip_19.jpg'
	image[19]	= 'shell_bannerClip_20.jpg'
	
	var ran		= 60/image.length
	
	function ranImage() {
		currentdate = new Date()
		core = currentdate.getSeconds()
		core = Math.floor(core/ran)
		return(image[core])
	}
	document.write('<img src="/images/' +ranImage()+ '" alt="" id="bannerClip">')

//-->
