function initAll() {
	var allLinks = document.getElementsByTagName("a");
	
	for (var i=0; i<allLinks.length; i++) {
		if (allLinks[i].className.indexOf("menuLink") > -1) {
			allLinks[i].onclick = toggleMenu;
		}
	}
}

function toggleMenu() {
	var startMenu = this.href.lastIndexOf("/")+1;
	var stopMenu = this.href.lastIndexOf(".");
	var thisMenuName = this.href.substring(startMenu,stopMenu);

	var thisMenu = document.getElementById(thisMenuName).style;
	thisMenu.display = (thisMenu.display == "block") ? "none" : "block";

	return false;
}

function switcher1(tab1) { 
	( tab1 == 1 ) ? r = 0 : r = 1;
	( tab1 == 2 ) ? m = 2 : m = 3;
	t = tab1 - 1;
	document.images.box1a.src = heads1[r];
	document.images.box1b.src = heads1[m];
	document.getElementById("boxText").innerHTML = tabbedText[t];}
	
function switcher2(tab2) { 
	( tab2 == 1 ) ? x = 4 : x = 5;
	( tab2 == 2 ) ? y = 6 : y = 7;
	( tab2 == 3 ) ? z = 8 : z = 9;
	t = tab2 - 1;
	document.images.box2a.src = heads1[x];
	document.images.box2b.src = heads1[y];
	document.images.box2c.src = heads1[z];
	document.getElementById("boxText").innerHTML = tabbedText[t];}

function rotate() { 
	document.images.pic.src = imgs[n];
	document.getElementById("imgText").innerHTML = captionText[n];
	( n == 7 ) ? n = 0 : n++;
	t=setTimeout("rotate()", pause1)}
function stoprotate(s) {
	clearTimeout(t);
	document.images.pic.src = imgs[s];
	document.getElementById("imgText").innerHTML = captionText[s];
	t=setTimeout("rotate()", pause2)}

function swap(n)
{	( n == 1 ) ? document.images.hm.src = "/images/home_over.jpg" : document.images.hm.src = "/images/home_top_menu.jpg";
	( n == 2 ) ? document.images.ss.src = "/images/subscribe_over.jpg" : document.images.ss.src = "/images/subscribe_top_menu.jpg";
	( n == 3 ) ? document.images.ad.src = "/images/advertise_over.jpg" : document.images.ad.src = "/images/advertise_top_menu.jpg";
	( n == 4 ) ? document.images.em.src = "/images/employment_over.jpg" : document.images.em.src = "/images/employment_top_menu.jpg";
	( n == 5 ) ? document.images.fr.src = "/images/fundraisers_over.jpg" : document.images.fr.src = "/images/fundraisers_top_menu.jpg";
	( n == 6 ) ? document.images.cu.src = "/images/contact_us_over.jpg" : document.images.cu.src = "/images/contact_us_top_menu.jpg";
	( n == 7 ) ? document.images.dl.src = "/images/downloads_over.jpg" : document.images.dl.src = "/images/downloads_top_menu.jpg";
	( n == 8 ) ? document.images.mb.src = "/images/message_board_over.jpg" : document.images.mb.src = "/images/message_board_top_menu.jpg";}
	
function Mail(box) {
   domain="lscsn.com";
   document.write("<a class=\"page\" href=\"mailto:"+box+"@"+domain+"\">"+box+"@"+domain+"</a>"); }