
/*
				Random Image Link Script- By Website Abstraction(http://www.wsabstract.com) 
				Over 200+ free JavaScripts here!
				Updated: 00/04/25
				*/

				function random_imglink(){
				var myimages=new Array()
				//specify random images below. You can have as many as you wish
				myimages[1]="/photos/gettinghere/hero2lg.jpg"
				myimages[2]="/photos/gettinghere/privacy.hero2lg.jpg"
				//myimages[3]="/photos/gettinghere/gettinghere1_651x165.jpg"
//				myimages[4]="/photos/gettinghere/hero3lg_win.jpg"
//				myimages[5]="/photos/gettinghere/hero2lg.jpg"
//				myimages[6]="/photos/gettinghere/gettinghere1_651x165.jpg"
//				myimages[7]="/photos/gettinghere/hero.gethere3.jpg"
				
				


				//specify corresponding links below
				var imagelinks=new Array()
				imagelinks[1]="#"
				imagelinks[2]="#"
				//imagelinks[3]="#"
//				imagelinks[4]="http://www.japhoto.com"
//				imagelinks[5]="http://www.japhoto.com"
//				imagelinks[6]="http://www.japhoto.com"
//				imagelinks[7]="#"
				 
				
				
				

				var ry=Math.floor(Math.random()*myimages.length)
				if (ry==0)
				ry=1
				document.write('<a target="_blank" href='+'"'+imagelinks[ry]+'"'+'><img src="'+myimages[ry]+'" width=702 border=0></a>')
				}
				random_imglink()
				