// replaces the site tag with a sifr flash version of it
function sIFR_replace()
{
	if (sIFR != null)
		if (sIFR.replaceElement != null) 
			sIFR.replaceElement("h6", "fileadmin/templates/scripts/berkeley-bold.swf", "#ffffff", "#ffffff", null, "#cc0000", 1, 0, 0, 0);
		  
}

// shows or hides a specified div
function toggleSubmenu(divId, link)
{
	var div = document.getElementById(divId);

	div.style.display = (div.style.display == 'block') ? "none" : "block";

	if (link.className == "")
		link.className = "tempselected";
	else
		link.className = "";
}
