		//make sure the # of elements to create the array actually matches the # of elements you have to put in
		var feature = new MakeArray(6)
		var ftrlink = new Array(6)
		
		//arrays are 0 based, so start with 0 and go up
		feature[0].src = "images/TESTI_01.jpg";
		feature[1].src = "images/TESTI_02.jpg";
		feature[2].src = "images/TESTI_03.jpg";
		feature[3].src = "images/TESTI_02.jpg";
		feature[4].src = "images/TESTI_01.jpg";
		feature[5].src = "images/TESTI_03.jpg";

		ftrlink[0] = "community/";
		ftrlink[1] = "community/";
		ftrlink[2] = "community/";
		ftrlink[2] = "community/";
		ftrlink[4] = "community/";
		ftrlink[5] = "community/";

   function MakeArray(n) {
     this.length = n
      for (var i = 0; i<n; i++) {
         this[i] = new Image()
       }
       return this
      }
      
	var randomNumber = Math.floor(Math.random() *6);
	var quot="'";  //this is double quote, single quote, double quote which produces '
	
