function startmenu(id,first,second)
				{
					if (document.getElementById)
				    { 
						navRoot = document.getElementById(id);
						li_num=0;
						for (i=0; i<navRoot.childNodes.length; i++)
				   	  		{ 
				 	  		node = navRoot.childNodes[i];			    	  		
					 	 	if (node.nodeName=="LI")
				        	{
			    	  			li_num++;
			    	  			
			    	  			
			    	  			
			    	  			
			    	  			
			    	  			for (j=0; j<node.childNodes.length; j++)
					   	  		{
									node_1=node.childNodes[j]
			    	  				if (node_1.nodeName=="UL")
						        	{
										node_UL=node_1; g=0;
										for (k=0; k<node_UL.childNodes.length; k++)
						   	  			{
							   	  			node_2=node_UL.childNodes[k];
											if(node_2.nodeName=="LI")
											{
											if(g%2==0){node_2.className+=" "+first;}else{node_2.className+=" "+second;}	
											g++;	
											}		
		
						   	  			}

							        }	
					   	  		}  		 	         	
				            }
				        }
				      
				    li_item_for=0;
				    for (i=0; i<navRoot.childNodes.length; i++)
		   	  		{ 
			 	  		node = navRoot.childNodes[i];			    	  		
				 	 	if (node.nodeName=="LI")
			        	{
				 	 		li_item_for++;
				 	 		if(li_num==li_item_for)
				 	 			{node.className+=" last_child";}
			        	}              
		   	  		}
		        	
		        	
		        	
		        	
		        	}
				}

