// JavaScript Document
function RandomCommercial() {
 var picArray = new Array( "images/comm/retail-restaurant.jpg", 
						  "images/comm/restaurant-3br.jpg",
						  "images/comm/range-end-road.jpg");

var linkArray = new Array( "http://www.loopnet.com/xNet/Looplink/Profile/Profile.aspx?LL=true&LID=15639376&STID=/brokers/rsrrealty",
						  "http://www.loopnet.com/xNet/Looplink/Profile/Profile.aspx?LL=true&LID=15061155&STID=/brokers/rsrrealty",
						  "http://www.loopnet.com/xNet/Looplink/Profile/Profile.aspx?LL=true&LID=16050294&STID=/brokers/rsrrealty");

var titleArray = new Array("7 Acre Retail, Restaurant, Commercial",
						  "Restaurant and 3BR Home",
						  "Range End Road");
var townArray = new Array("Reedsville, PA, 17084",
						  "New Cumberland, PA, 17070",
						  "Dillsburg, PA, 17019");

 var randomNum = Math.floor(Math.random() * picArray.length);
 var P = document.getElementById("pic")
 
	if(P)
	{
		P.setAttribute("src", picArray[randomNum]);
		P.setAttribute("alt", titleArray[randomNum]);
	 	P.setAttribute("title", titleArray[randomNum]);
	 
		var PL = document.getElementById("picLink");
		PL.setAttribute("href", linkArray[randomNum]);
	  
		 var TL = document.getElementById("textLink");
		 TL.setAttribute("href", linkArray[randomNum]);
		 
		 var T1 = document.getElementById("text1");
		 var T2 = document.getElementById("text2");
		 
		 T1.innerHTML=titleArray[randomNum];
		 T2.innerHTML=townArray[randomNum];
	}
 }
 
 window.onload = RandomCommercial;