function startList(id,first,second)
{
if (document.getElementById)
      { 
	navRoot2 = document.getElementById(id);
   	   j=0;
         for (i=0; i<navRoot2.childNodes.length; i++)
   	  { 
 	  node = navRoot2.childNodes[i];
    	  if (node.nodeName=="LI")
        	{
            
                      	if(j%2==0)    
                              {
                              node.className +=" "+first;
                              }   
                              else
                              {
                              node.className +=" "+second;
                              }
            j++;
            }
        }
      }



} 