// jcc.ts
// Desc: Changes top image to match current section of web site

// 2/23/2002 : Modified to work with Joomla 1.5 and swMenuFree

function init() {
	var menuitem = "";

	//check the a tags first
	var mainlinks=document.getElementById("menu").getElementsByTagName("td");
	for (var i=0;i<mainlinks.length;i++) {
		if (mainlinks[i].className == "item11-acton" || mainlinks[i].className == "item11-acton-last") {
			menuitem = mainlinks[i].getElementsByTagName("a")[0].innerHTML;
		}
	}

	// If we still don't have it, give up and use the home page image
	if (menuitem == "") {
		menuitem = "Home";
	}

	menuitem = menuitem.toLowerCase();
	var img = "";

	switch (menuitem) {
        case "calendar":
			img = "aboutus.jpg";
			break;
		case "about us":
			img = "aboutus.jpg";
			break;
		case "programs":
			img = "programs.jpg";
			break;
		case "family":
			img = "family.jpg";
			break;
		case "scholarship":
			img = "scholshp.jpg";
			break;
		case "volunteer":
			img = "voluntr.jpg";
			break;
		case "donate":
			img = "donate.jpg";
			break;
		case "newsroom":
			img = "news.jpg";
			break;
		case "admissions":
			img = "admissns.jpg";
			break;
		case "contact us":
			img = "contact.jpg";
			break;
		case "elementary school":
			img = "elementy.jpg";
			break;
		case "middle school":
			img = "middlscl.jpg";
			break;
		case "high school":
			img = "highschl.jpg";
			break;
		case "news releases":
			img = "news.jpg";
			break;
		default:
			img = "";
			break;
	}

	var flashlogo = document.getElementById("homelogo");
	if (img != "") {
		flashlogo.parentNode.removeChild(flashlogo);
		var header = document.getElementById("header");
		header.innerHTML = "<img src=\"http://thecollegecrusade.org/main/templates/rt_modbusiness/images/header/"+img+"\" />";
	} else {
		flashlogo.style.display = "block";
	}

	// see if we need to run the IE6 js hacks
	if (typeof startList == "function") {
		startList();
	}

}	


window.onload=init;

