//
// 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('ContentStartNotes').style.display='none';
document.getElementById('ContentStartYellowPages').style.display='none';
document.getElementById('ContentStartMB').style.display='none';
document.getElementById('ContentStartCareer').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
//