
function setTab1(){
     document.getElementById('tab1').style.display = '';
     document.getElementById('tab2').style.display = 'none';

     document.getElementById('tab1header').style.backgroundColor= '#e9ebc6';
     document.getElementById('tab2header').style.backgroundColor= '#c99b42';
     document.getElementById('tab1header').style.color= '#c99b42';
     document.getElementById('tab2header').style.color= '#e9ebc6';


     document.getElementById('tab1headertext').style.backgroundColor= '#e9ebc6';
     document.getElementById('tab2headertext').style.backgroundColor= '#c99b42';
     document.getElementById('tab1headertext').style.color= '#c99b42';
     document.getElementById('tab2headertext').style.color= '#e9ebc6';

}

function setTab2(){
      document.getElementById('tab1').style.display = 'none';
      document.getElementById('tab2').style.display = '';
     document.getElementById('tab1header').style.backgroundColor= '#c99b42';
     document.getElementById('tab2header').style.backgroundColor= '#e9ebc6';
     document.getElementById('tab1header').style.color= '#e9ebc6';
     document.getElementById('tab2header').style.color= '#c99b42';

     document.getElementById('tab1headertext').style.backgroundColor= '#c99b42';
     document.getElementById('tab2headertext').style.backgroundColor= '#e9ebc6';
     document.getElementById('tab1headertext').style.color= '#e9ebc6';
     document.getElementById('tab2headertext').style.color= '#c99b42';

}

function changeMouse(elem){elem.style.cursor='pointer';}

function restoreMouse(elem){elem.style.cursor='text';}
