function opis(text) {
 document.getElementById('opis').innerHTML=text.replace('\n', '<BR/><BR/>');
 }

function submenuhide(nr) {
 if(submenu[nr]==0) return;
 for(i=0; i<submenu[nr]; i++) 
  if(document.getElementById('m'+nr+'-'+i))
   document.getElementById('m'+nr+'-'+i).className='hidden';
  else
   return true;
 }

function submenushow(nr) {
 if(submenu[nr]==0) return true;
 if(!document.getElementById) return true;
 for(j=0; j<submenu.length; j++)
  if(j!=nr) submenuhide(j);
 for(i=0; i<submenu[nr]; i++) 
  if(document.getElementById('m'+nr+'-'+i))
   document.getElementById('m'+nr+'-'+i).className='shown';
  else
   return true;
 return false;
 }

function submenuuncomment() {
 temp=document.body.innerHTML;
 for(i=0; i<submenu.length; i++)
  temp=temp.replace('<!--submenu','').replace('submenu-->','');
 document.body.innerHTML=temp;
 }

function initiaze() {
 if(document.getElementById) submenuuncomment();
 }
 
onload=initiaze
