//
// 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('b0').className='notHere';
document.getElementById('c0').className='notHere';


document.getElementById('ContentMiddleLayoutStartCalendar').style.display='none';
document.getElementById('ContentMiddleLayoutStartPray').style.display='none';
document.getElementById('ContentMiddleLayoutStartWelcome').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
//
