// JavaScript Document

<!--
// original content taken from Nic's JavaScript Page with permission
// lack of these three lines will result in copyright infringment
// made by: Nic's JavaScript Page - http://www.javascript-page.com

var currentdate = 0;
var currentdate2 = 0;
var core = 0;
var core2 = 0;

function initArray() {

this.length = initArray.arguments.length;
  for (var i = 0; i < this.length; i++) {
  this[i] = initArray.arguments[i];
  }
}

link = new initArray(
					 
"http://www.facebook.com/aquaticlifeproducts",					 
"http://www.ushio.com/products/petcare/aqualite.htm",
"http://www.jelliquarium.com"
);

link2 = new initArray(
"http://www.ecotechmarine.com",
"http://www.hydor.it/en/products/show/35",
"http://www.lafishguys.com",
"http://www.facebook.com/aquaticlifeproducts"
);

image = new initArray(
				  
"http://www.reefhobbyistmagazine.com/images/ads/AL_ad_q32010.gif",					  
"http://www.reefhobbyistmagazine.com/images/ads/ushio.jpg",
"http://www.reefhobbyistmagazine.com/images/ads/8.gif"
);

image2 = new initArray(
"http://www.reefhobbyistmagazine.com/images/ads/ETM2.gif",
"http://www.reefhobbyistmagazine.com/images/ads/hydor.gif",
"http://www.reefhobbyistmagazine.com/images/ads/9.bmp",
"http://www.reefhobbyistmagazine.com/images/ads/AL_ad_q32010.gif"
);

text = new initArray(
				 
"Aquatic Life",					 
"Ushio",
"Jelliquarium"
);

text2 = new initArray(			  
"Ecotech Marine",
"Hydor USA",
"LA FISH GUYS",
"Aquatic Life"

);

var currentdate = new Date();
var core = currentdate.getSeconds() % image.length;
var ranlink  = link[core];
var ranimage = image[core];
var rantext  = text[core];

var currentdate2 = new Date();
var core2 = currentdate2.getSeconds() % image.length;
var ranlink2  = link2[core];
var ranimage2 = image2[core];
var rantext2  = text2[core];

//-->