      /*
      Static menu script II (By maXimus, maximus@nsimail.com, http://maximus.ravecore.com/)
      Modified slightly/ permission granted to Dynamic Drive to feature script in archive
      For full source, usage terms, and 100's more DHTML scripts, visit http://dynamicdrive.com
      */

      //configure below variable for menu width, position on page
      var menuwidth=200
      var offsetleft=10
      var offsettop=0

      var ns4=document.layers?1:0
      var ie4=document.all?1:0
      var ns6=document.getElementById&&!document.all?1:0

      function makeStatic() {
         if (ie4){
            object1.style.pixelTop=document.body.scrollTop+offsettop
         }
         else if (ns6){
            document.getElementById("object1").style.top=window.pageYOffset+offsettop
         }
         else if (ns4) {
            eval(document.object1.top=eval(window.pageYOffset+offsettop));
         }
         setTimeout("makeStatic()",0);
      }

      if (ie4||ns6){ document.write('<span align="left" id="object1" style="position:absolute; top:20; left:'+offsetleft+'; z-index:5; cursor:hand;"><table border="0" width="'+menuwidth+'" cellpadding="0" cellspacing="0">')}
      else if (ns4){ document.write('<layer top="20" name="object1" left="'+offsetleft+'"><table border="0" cellpadding="0" cellspacing="1"><tr><td><table border="0" cellpadding="0" cellspacing="0" width="'+menuwidth+'">')}

      if (ie4||ns6||ns4)
      document.write('<tr><td>"If the fool would persist in his folly he would become wise."<br /> William Blake<br /><br /></td></tr>')
      var menui = new Array();
      var menul = new Array();

      //configure below for menu items. Extend list as desired
      //menui[0]="website of Seminar on Progressive Democratic Economies<br />";
      //menui[1]="site do Instituto Desenvolvimento com Justi&ccedil;a";

      menul[0]="http://www.sopde.org";
      //menul[1]="http://www.idj.org.br";


      for (i=0;i<=menui.length-1;i++)
         if (ie4||ns6){document.write('<tr><td><a href="'+menul[i]+'" class="menulinks2">'+menui[i]+'</a><br /></td></tr>')}
         else if (ns4){document.write('<tr><td><ilayer><layer width="'+menuwidth+'"><a href="'+menul[i]+'" class="menulinks2">'+menui[i]+'</a><br /></layer></ilayer></td></tr>')}

         if (ie4||ns6){document.write('</table></span>')}
         else if(ns4){document.write('</table></td></tr></table></layer>')}

      function menu3(){
         if (ns6||ie4||ns4)
         makeStatic()
      }

      window.onload=menu3
