// JavaScript Document
function switchShow(theid){ 
var thearray= new Array("home", "samples", "services", "contact"); 
for(i=0; i<thearray.length; i++){ 
      if(thearray[i] == theid){ 
            document.getElementById(theid).style.display="block";  
      }else{ 
            document.getElementById(thearray[i]).style.display="none";  
      } 
   } 
}

function switchSamples(theid){ 
var thearray= new Array("card", "brochure", "photo"); 
for(i=0; i<thearray.length; i++){ 
      if(thearray[i] == theid){ 
            document.getElementById(theid).style.display="block";  
      }else{ 
            document.getElementById(thearray[i]).style.display="none";  
      } 
   } 
}
