// JavaScript Document
function switchquestions(theid){ 
var thearray= new Array("nuthin","dreamDeep","getNaked","filter9"); 
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"; 
      } 
   } 
}
