var curr=null;function loadPhoto(){   //alert("Load");   photo = new Array();   photo[1] = new Image;  photo[1].src = "images/pers/ha.jpg";   photo[2] = new Image;  photo[2].src = "images/pers/aa.jpg";   photo[3] = new Image;  photo[3].src = "images/pers/ebm.jpg";   photo[4] = new Image;  photo[4].src = "images/pers/gel.jpg";   photo[5] = new Image;  photo[5].src = "images/pers/th.jpg";   photo[6] = new Image;  photo[6].src = "images/pers/fh.jpg";   photo[7] = new Image;  photo[7].src = "images/pers/rh.jpg";   photo[8] = new Image;  photo[8].src = "images/pers/sk.jpg";   photo[9] = new Image;  photo[9].src = "images/pers/bl.jpg";   photo[10] = new Image;  photo[10].src = "images/pers/al.jpg";   photo[11] = new Image;  photo[11].src = "images/pers/cm.gif";   photo[12] = new Image;  photo[12].src = "images/pers/us.jpg";   photo[13] = new Image;  photo[13].src = "images/pers/js.jpg";		   photo[14] = new Image;  photo[14].src = "images/pers/fh.jpg";   photo[15] = new Image;  photo[15].src = "images/pers/sw.jpg";   photo[16] = new Image;  photo[16].src = "images/pers/co.jpg";   photo[17] = new Image;  photo[17].src = "images/pers/ho.jpg";	   photo[18] = new Image;  photo[17].src = "images/pers/ce.jpg";		}function Show(namn){      //alert("Show");   if(curr!=null){       if(document.layers){         document.layers[curr].visibility = "hide";      }      else if (document.all){         document.all[curr].style.visibility = "hidden";      }      else if (document.getElementById){         L = document.getElementById(curr);         L = L.style;         L.visibility = 'hidden';      }   }   if(document.layers){      document.layers[namn].visibility = "show";   }   else if (document.all){      document.all[namn].style.visibility = "visible";   }   else if (document.getElementById){      L = document.getElementById(namn);      L = L.style;      L.visibility = 'visible';   }   curr=namn;}function toggleBox(szDivID, iState) // 1 visible, 0 hidden{ //alert("toggleBox");    if(document.layers)	   //NN4+    {       document.layers[szDivID].visibility = iState ? "show" : "hide";    }    else if(document.getElementById)	  //gecko(NN6) + IE 5+    {        var obj = document.getElementById(szDivID);        obj.style.visibility = iState ? "visible" : "hidden";    }    else if(document.all)	// IE 4    {        document.all[szDivID].style.visibility = iState ? "visible" : "hidden";    }}/**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
