var ads_h = new Array(
	'Eyetique.jpg', 
	'Highmark.jpg', 
	'RBASE.jpg', 
	'Idlewild.jpg', 
	'Levin.jpg', 
	'Walmart.jpg', 
	'Macys.jpg', 
	'Kmart.jpg', 
	'Kennywood.jpg'
);
var links_h = new Array(
	'http://www.eyetique.com/', 
	'http://www.highmarkbcbs.com/', 
	'http://www.rbase.com/', 
	'http://www.idlewild.com/', 
	'http://www.levinfurniture.com/', 
	'http://www.walmart.com/', 
	'http://www.macysinc.com/community/', 
	'http://www.kmart.com/', 
	'http://www.kennywood.com/'
);
var ads_s = new Array(
	'Macys.jpg', 
	'RBASE.jpg', 
	'Kmart.jpg', 
	'Eyetique.jpg', 
	'Walmart.jpg', 
	'Kennywood.jpg', 
	'Levin.jpg', 
	'Highmark.jpg', 
	'Idlewild.jpg'
);
var links_s = new Array(
	'http://www.macysinc.com/community/', 
	'http://www.rbase.com/', 
	'http://www.kmart.com/', 
	'http://www.eyetique.com/', 
	'http://www.walmart.com/', 
	'http://www.kennywood.com/', 
	'http://www.levinfurniture.com/', 
	'http://www.highmarkbcbs.com/', 
	'http://www.idlewild.com/'
);

var i_h = 0;
var i_s = 0;

function cycle_ads() {
	if (++i_h >= ads_h.length) i_h = 0;
	if (++i_s >= ads_s.length) i_s = 0;
	//alert(ads_h[i_h] + ' ' + ads_s[i_s]);
	display_ads();
	setTimeout('cycle_ads();', 10000);
}

function display_ads() {
	var h = (document.all) 
		? document.all.sponsorheader 
		: (document.getElementById) 
			? document.getElementById('sponsorheader') 
			: null;
	var s = (document.all) 
		? document.all.sponsorskyscraper 
		: (document.getElementById) 
			? document.getElementById('sponsorskyscraper') 
			: null;
	if (h != null)
		h.innerHTML = '<a href="' + links_h[i_h] + '" target="_blank"><img src="a/h/' + ads_h[i_h] + '" alt="Visit Our Sponsor" /></a>';
	if (s != null)
		s.innerHTML = '<a href="' + links_s[i_s] + '" target="_blank"><img src="a/s/' + ads_s[i_s] + '" alt="Visit Our Sponsor" /></a>';
	//alert(h.innerHTML + ' ' + i_h + '\n' + s.innerHTML + ' ' + i_s);
}

setTimeout('cycle_ads();', 10000);
