// JavaScript Document

		//Function:  Fetch a different banner every 20 minutes
		//Author:  Steve Muller
		//Note:  Copyright © 2003 Solana Beach Design. All rights reserved.
		var d = new Date()
		x=((Math.floor((60 * d.getHours () + d.getMinutes() + 11) / 5)) % 18)
		if (x==0)
		{ document.write('<img src="assets/photos/panel_photo_01.png" width="140">') }
		else if (x==1)
		{ document.write('<img src="assets/photos/panel_photo_02.png" width="140">') }
		else if (x==2)
		{ document.write('<img src="assets/photos/panel_photo_03.png" width="140">') }
		else if (x==3)
		{ document.write('<img src="assets/photos/panel_photo_04.png" width="140">') }		
		else if (x==4)
		{ document.write('<img src="assets/photos/panel_photo_05.png" width="140">') }
		else if (x==5)
		{ document.write('<img src="assets/photos/panel_photo_06.png" width="140">') }
		else if (x==6)
		{ document.write('<img src="assets/photos/panel_photo_07.png" width="140">') }
		else if (x==7)
		{ document.write('<img src="assets/photos/panel_photo_08.png" width="140">') }
		else if (x==8)
		{ document.write('<img src="assets/photos/panel_photo_09.png" width="140">') }
		else if (x==9)
		{ document.write('<img src="assets/photos/panel_photo_10.png" width="140">') }
		else if (x==10)
		{ document.write('<img src="assets/photos/panel_photo_11.png" width="140">') }
		else if (x==11)
		{ document.write('<img src="assets/photos/panel_photo_12.png" width="140">') }
		else if (x==12)
		{ document.write('<img src="assets/photos/panel_photo_13.png" width="140">') }
		else if (x==13)
		{ document.write('<img src="assets/photos/panel_photo_14.png" width="140">') }	
		else if (x==14)
		{ document.write('<img src="assets/photos/panel_photo_15.png" width="140">') }
		else if (x==15)
		{ document.write('<img src="assets/photos/panel_photo_16.png" width="140">') }
		else if (x==16)
		{ document.write('<img src="assets/photos/panel_photo_17.png" width="140">') }																						
		else 
		{ document.write('<img src="assets/photos/panel_photo_18.png" width="140">') }	
