function create() {
	this.width = '';
	this.height = '';
	this.src = '';
	this.href = '';
	this.border = '';
	this.mouseover = '';
	this.sponsor = '';
}

function random(n)  {
	var js_mult1=3141;
	var js_mult2=5821;
	var js_m1=100000000;
	var js_m2=10000;
	var js_iseed=0;
	var js_iseed1=0;
	var js_iseed2=0;

	if (js_iseed == 0)  {

		now = new Date();
		js_iseed = now.getHours() + now.getMinutes() * 60 + now.getSeconds() * 3600;

	}
	js_iseed1 = js_iseed / js_m2;
	js_iseed2 = js_iseed % js_m2;
	var tmp = (((js_iseed2 * js_mult1 + js_iseed1 * js_mult2) % js_m2) * js_m2 + (js_iseed2 * js_mult2)) % js_m1;
	js_iseed = (tmp + 1) % js_m1;
	return (Math.floor((js_iseed/js_m1) * n));

}
var numberOfAds = 12      //number or ads you want to display;
ads = new Array();

for(var i=0; i<numberOfAds; i++) { ads[i] = new create() };

ads[0].width = "468";
ads[0].height = "60";
ads[0].src = "/banner/barley1.gif";
ads[0].href = "http://www.aim4health.com/barleygreen.htm";
ads[0].border = "0";
ads[0].mouseover = "AIM - Barleygreen!";
ads[0].sponsor = "Aim For Health";

ads[1].width = "468";
ads[1].height = "60";
ads[1].src = "/banner/barley2.gif";
ads[1].href = "http://www.aim4health.com/barleygreen.htm";
ads[1].border = "0";
ads[1].mouseover = "AIM - Barleygreen!";
ads[1].sponsor = "Aim For Health";

ads[2].width = "468";
ads[2].height = "60";
ads[2].src = "/banner/barley3.gif";
ads[2].href = "http://www.aim4health.com/barleygreen.htm";
ads[2].border = "0";
ads[2].mouseover = "AIM - Barleygreen!";
ads[2].sponsor = "Aim For Health";

ads[3].width = "468";
ads[3].height = "60";
ads[3].src = "/banner/hdiet.gif";
ads[3].href = "http://www.aim4health.com/halleluj.htm";
ads[3].border = "0";
ads[3].mouseover = "Hallelujah Diet!";
ads[3].sponsor = "Aim For Health";

ads[4].width = "468";
ads[4].height = "60";
ads[4].src = "/banner/herbal1.gif";
ads[4].href = "http://www.aim4health.com/fiberblend.htm";
ads[4].border = "0";
ads[4].mouseover = "AIM - Herbal Fiberblend!";
ads[4].sponsor = "Aim For Health";

ads[5].width = "468";
ads[5].height = "60";
ads[5].src = "/banner/herbal2.gif";
ads[5].href = "http://www.aim4health.com/fiberblend.htm";
ads[5].border = "0";
ads[5].mouseover = "AIM - Herbal Fiberblend!";
ads[5].sponsor = "Aim For Health";

ads[6].width = "468";
ads[6].height = "60";
ads[6].src = "/banner/herbal3.gif";
ads[6].href = "http://www.aim4health.com/fiberblend.htm";
ads[6].border = "0";
ads[6].mouseover = "AIM - Herbal Fiberblend!";
ads[6].sponsor = "Aim For Health";

ads[7].width = "468";
ads[7].height = "60";
ads[7].src = "/banner/metabolite1.gif";
ads[7].href = "http://www.aim4health.com/metabo.htm";
ads[7].border = "0";
ads[7].mouseover = "AIM - Metabolite!";
ads[7].sponsor = "Aim For Health";

ads[8].width = "468";
ads[8].height = "60";
ads[8].src = "/banner/renew1.gif";
ads[8].href = "http://www.aim4health.com/renewed.htm";
ads[8].border = "0";
ads[8].mouseover = "AIM - Renewed Balance!";
ads[8].sponsor = "Aim For Health";

ads[9].width = "468";
ads[9].height = "60";
ads[9].src = "/banner/renew2.gif";
ads[9].href = "http://www.aim4health.com/renewed.htm";
ads[9].border = "0";
ads[9].mouseover = "AIM - Renewed Balance!";
ads[9].sponsor = "Aim For Health";

ads[10].width = "468";
ads[10].height = "60";
ads[10].src = "/banner/renew3.gif";
ads[10].href = "http://www.aim4health.com/renewed.htm";
ads[10].border = "0";
ads[10].mouseover = "AIM - Renewed Balance!";
ads[10].sponsor = "Aim For Health";

ads[11].width = "468";
ads[11].height = "60";
ads[11].src = "/banner/coenzyme1.gif";
ads[11].href = "http://www.aim4health.com/coenzq10.htm";
ads[11].border = "0";
ads[11].mouseover = "AIM - Coenzyme Q10!";
ads[11].sponsor = "Aim For Health";

var n = random(numberOfAds);
n = (n==0) ? n+1 : n;
n = (n > numberOfAds) ? n-numberOfAds : n;
var image = ads[n];
var ad = "";
ad += '<a href="' + image.href + '" \n';
ad += 'onMouseOver="self.status=\'' + image.mouseover + '\'\;return true" \n';
ad += 'onMouseOut="self.status=\'\'"> \n';
ad += '<img src="' + image.src + '" width=' + image.width;
ad += '\n height=' + image.height + ' border=' + image.border;
ad += '\n><br>Please visit our sponsor: ' + image.sponsor + '</a>';

