	$(document).ready( function()
	{
		var indexes = $("div#controls").each( function()
		{
			$("ul.actions a", this).click( function() 
			{ 
				var link = $(this);
				var menu = link.parents("div#controls");
				menu.find("ul.actions a.active").removeClass("active");
				menu.children("div:visible").hide();
				hash = this.hash.split("#")[1]
				//alert("div."+hash)
				menu.children("div."+hash).show();
				link.addClass("active"); return false
			} ).eq(0).trigger("click");
		} )
	} )



// College Links
var links_onload 
var UL = null
if ( window.onload )
{
	links_onload = window.onload
}
window.onload = linksLoad
function linksLoad()
{
	UL = document.getElementById("footer-nav").getElementsByTagName("UL")[0];
	UL.style.display = "none"
	var link = document.getElementById("activate")
	link.onclick = run
	if (links_onload)
	{
		links_onload()
	}
		
}
function run()
{
	
	if (UL)
	{
		if (UL.style.display == "none") { UL.style.display = "block" } else { UL.style.display = "none" }
	}
	return false
	
}