// JavaScript Document
function switchquestions(theid){ 
var thearray= new Array("nuthin","anthem","dreamDeep","filterNine","getNaked","jihaudio","loveToday","oneEye","rimsAndBass","rudeBoySalute","serenadeAtGunpoint","shutUpAndDance","this","waitingInBabylon"); 
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"; 
      } 
   } 
}
