// Random Banner Rotation Script
var max = 11;
var thisBanner = 1;
var banner = new MakeBannerArray(max);

function MakeBannerArray(n) {
	this.cleaned = false;
	this.length = n;
	for (var i = 1; i <= n; i++)
		this[i] = "";
	return this;
} 


banner[1]='<a href="http://www.landscapersstore.com/shippinginfo.html"><img src="http://lib.store.yahoo.net/lib/yhst-80920791612991/free-shipping-banner.jpg" width="450" height="85" border="0" alt="Free Shipping on orders over $50"><\/a>';
banner[2]='<a href="http://www.landscapersstore.com/shippinginfo.html"><img src="http://lib.store.yahoo.net/lib/yhst-80920791612991/free-shipping-banner.jpg" width="450" height="85" border="0" alt="Free Shipping on orders over $50"><\/a>';
banner[3]='<a href="http://www.landscapersstore.com/shippinginfo.html"><img src="http://lib.store.yahoo.net/lib/yhst-80920791612991/free-shipping-banner.jpg" width="450" height="85" border="0" alt="Free Shipping on orders over $50"><\/a>';
banner[4]='<a href="http://www.landscapersstore.com/the-rumford-gardener.html"><img src="http://lib.store.yahoo.net/lib/yhst-80920791612991/rumford-gardener-banner.jpg" width="450" height="85" border="0" alt="Rumford"><\/a>';
banner[5]='<a href="http://www.landscapersstore.com/the-rumford-gardener.html"><img src="http://lib.store.yahoo.net/lib/yhst-80920791612991/rumford-gardener-banner.jpg" width="450" height="85" border="0" alt="Rumford"><\/a>';
banner[6]='<a href="http://www.landscapersstore.com/fiskars-nyglass-3-pc-garden-tool-set.html"><img src="http://lib.store.yahoo.net/lib/yhst-80920791612991/Fiskars-free-gift-Banner.jpg" width="450" height="85" border="0" alt="Fiskars Gift"><\/a>';
banner[7]='<a href="http://www.landscapersstore.com/fiskars-nyglass-3-pc-garden-tool-set.html"><img src="http://lib.store.yahoo.net/lib/yhst-80920791612991/Fiskars-free-gift-Banner.jpg" width="450" height="85" border="0" alt="Fiskars Gift"><\/a>';
banner[8]='<a href="http://www.landscapersstore.com/mud-gloves.html"><img src="http://lib.store.yahoo.net/lib/yhst-80920791612991/Mud-Gloves-Banner.jpg" width="450" height="85" border="0" alt="Mud Gloves"><\/a>';
banner[9]='<a href="http://www.landscapersstore.com/mud-gloves.html"><img src="http://lib.store.yahoo.net/lib/yhst-80920791612991/Mud-Gloves-Banner.jpg" width="450" height="85" border="0" alt="Mud Gloves"><\/a>';
banner[10]='<a href="http://www.landscapersstore.com/allsop-solar-lanterns.html"><img src="http://lib.store.yahoo.net/lib/yhst-80920791612991/Allsop-Lanterns-Banner.jpg" width="450" height="85" border="0" alt="Allsop"><\/a>';
banner[11]='<a href="http://www.landscapersstore.com/allsop-solar-lanterns.html"><img src="http://lib.store.yahoo.net/lib/yhst-80920791612991/Allsop-Lanterns-Banner.jpg" width="450" height="85" border="0" alt="Allsop"><\/a>';



function rand(n) {
  	rnum=Math.floor(n*Math.random())+1;
  	return rnum;
}

function setBanner() {
	if (!banner.cleaned) {
		if (window.location.href.indexOf('hostingprod') > 0)
			for (var i = 1, j = banner.length; i < j; i++)
				banner[i] = banner[i].replace(/src="http/g, 'src="https');
		banner.cleaned = true;
	}
  	thisBanner=rand(max);
} 
