var prePath = "http://www.cscmpmn.org/";
 
function showSponsors() 
{
	// NOTE: sponsors array set in _header.cfm for 'Home'
	
	if(currentSponsor >= sponsors.length) currentSponsor = 0;
	
	var specs = sponsors[currentSponsor].split("|", 3);
	//alert(specs[0] + ', ' + specs[1] + ', ' + specs[2]);
	
	var sponsor = document.getElementById('sponsor');
	sponsor.setAttribute('title', specs[0]);
	sponsor.setAttribute('href', 'http:\/\/' + specs[2]);
	sponsor.firstChild.setAttribute('src', '/images/'+ specs[1]);
	
	currentSponsor++;
}