function init() {
	if (TransMenu.isSupported()) {
		TransMenu.initialize();
		menu_sponsors.onactivate = function() {document.getElementById('sponsors').className = 'hover'; };
		menu_sponsors.ondeactivate = function() {document.getElementById('sponsors').className = ''; };

	}
}

if (TransMenu.isSupported()) {
	var ms = new TransMenuSet(TransMenu.direction.down, 1, 0, TransMenu.reference.bottomLeft);

	var menu_sponsors = ms.addMenu(document.getElementById("sponsors"));
		menu_sponsors.addItem("CWA Sponsors","http://www.carolinaswirelessassociation.com/CWASponsors.php","");
		menu_sponsors.addItem("Sponsorship Levels","http://www.carolinaswirelessassociation.com/SponsorshipLevels.php","");
		menu_sponsors.addItem("Golf Tournament Sponsorships","http://www.carolinaswirelessassociation.com/GolfTournamentSponsorships.php","");

	TransMenu.renderAll();
}
