
/*
				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/realestate/resortinfo1_651x165.jpg"
				myimages[2]="/photos/realestate/resortinfo2_651x165.jpg"
				myimages[3]="/photos/realestate/resortinfo3_651x165.jpg"
				
				


				//specify corresponding links below
				var imagelinks=new Array()
				imagelinks[1]="#"
				imagelinks[2]="#"
				imagelinks[3]="#"
				
				
				

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