//
// these three functions would be better off building an array of a tags, 
// but my OOP kung fu is not strong enough - CE 9.18.06
//

function tabSwitch1(tabOn,divOn)
{
//turn off all tabs and divs
document.getElementById('a0').className='notHere';
document.getElementById('a1').className='notHere';
document.getElementById('a2').className='notHere';
document.getElementById('a3').className='notHere';
document.getElementById('a4').className='notHere';
document.getElementById('a5').className='notHere';
document.getElementById('a6').className='notHere';

document.getElementById('ContentStartWelcome').style.display='none';
document.getElementById('ContentStartNews').style.display='none';
document.getElementById('ContentStartEvents').style.display='none';
document.getElementById('ContentStartFindAlums').style.display='none';
document.getElementById('ContentStartClassNotes').style.display='none';
document.getElementById('ContentStartSupport').style.display='none';
document.getElementById('ContentStartGroups').style.display='none';

//turn on the correct divs and tab
document.getElementById(tabOn).className='here';
document.getElementById(divOn).style.display='block';
}


//
// end tabswitch hacks - CE 09.18.06
//

