// 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() + 5) / 4)) % 32)
		if (x==0)
		{ document.write('<img src="assets/photos/player_01.png" width="140">') }
		else if (x==1)
		{ document.write('<img src="assets/photos/player_02.png" width="140">') }
		else if (x==2)
		{ document.write('<img src="assets/photos/player_03.png" width="140">') }
		else if (x==3)
		{ document.write('<img src="assets/photos/player_04.png" width="140">') }
		else if (x==4)
		{ document.write('<img src="assets/photos/player_05.png" width="140">') }
		else if (x==5)
		{ document.write('<img src="assets/photos/player_06.png" width="140">') }
		else if (x==6)
		{ document.write('<img src="assets/photos/player_07.png" width="140">') }	
		else if (x==7)
		{ document.write('<img src="assets/photos/player_08.png" width="140">') }	
		else if (x==8)
		{ document.write('<img src="assets/photos/player_09.png" width="140">') }	
		else if (x==9)
		{ document.write('<img src="assets/photos/player_10.png" width="140">') }	
		else if (x==10)
		{ document.write('<img src="assets/photos/player_11.png" width="140">') }	
		else if (x==11)
		{ document.write('<img src="assets/photos/player_12.png" width="140">') }	
		else if (x==12)
		{ document.write('<img src="assets/photos/player_13.png" width="140">') }	
		else if (x==13)
		{ document.write('<img src="assets/photos/player_14.png" width="140">') }	
		else if (x==14)
		{ document.write('<img src="assets/photos/player_15.png" width="140">') }	
		else if (x==15)
		{ document.write('<img src="assets/photos/player_16.png" width="140">') }	
		else if (x==16)
		{ document.write('<img src="assets/photos/player_17.png" width="140">') }	
		else if (x==17)
		{ document.write('<img src="assets/photos/player_18.png" width="140">') }	
		else if (x==18)
		{ document.write('<img src="assets/photos/player_19.png" width="140">') }		
		else if (x==19)
		{ document.write('<img src="assets/photos/player_20.png" width="140">') }
		else if (x==20)
		{ document.write('<img src="assets/photos/player_21.png" width="140">') }
		else if (x==21)
		{ document.write('<img src="assets/photos/player_22.png" width="140">') }
		else if (x==22)
		{ document.write('<img src="assets/photos/player_23.png" width="140">') }
		else if (x==23)
		{ document.write('<img src="assets/photos/player_24.png" width="140">') }
		else if (x==24)
		{ document.write('<img src="assets/photos/player_25.png" width="140">') }
		else if (x==25)
		{ document.write('<img src="assets/photos/player_26.png" width="140">') }
		else if (x==26)
		{ document.write('<img src="assets/photos/player_27.png" width="140">') }
		else if (x==27)
		{ document.write('<img src="assets/photos/player_28.png" width="140">') }
		else if (x==28)
		{ document.write('<img src="assets/photos/player_29.png" width="140">') }		
		else if (x==29)
		{ document.write('<img src="assets/photos/player_30.png" width="140">') }
		else if (x==30)
		{ document.write('<img src="assets/photos/player_31.png" width="140">') }																															
		else 
		{ document.write('<img src="assets/photos/player_32.png" width="140">') }		
		
