




function display(item){

document.all.abouttable.style.display="none"

document.all.aboutlink.href="javascript:display(1)"

document.all.phototable.style.display="none"

document.all.photolink.href="javascript:display(2)"



 if (item==1){

 document.all.aboutlink.style.textdecoration="none"

  document.all.abouttable.style.display=""

  document.all.aboutlink.href="javascript:hide(1)"}


 if (item==2){

 document.all.photolink.style.textdecoration="none"

  document.all.phototable.style.display=""

  document.all.photolink.href="javascript:hide(2)"}


}



function hide(item){

 if (item==1){

  document.all.abouttable.style.display="none"

  document.all.aboutlink.href="javascript:display(1)"}


 if (item==2){

  document.all.phototable.style.display="none"

  document.all.photolink.href="javascript:display(2)"}


}


