//Script to generate an array using the menu class in core.css
//current class is the current page ???
// change list image in core.css
//using an array to hold all the links
// an array for lower level links can be added

//******* variables ****

// used to set current selection *set to array index
//var cur=0; //current page indicator




//*********************************************
//functions to create menu
//********************************************/
  
function make_menu()
  { 
	 //find_current();
	 menu_l=document.getElementById('menulist');
	 linkstring="";
     for (i=0; i<linkss.length; i++)
    {
	     linkstring += '<a href='+linkss[i]+'>'+'<img src='+titles[i]+' /></a>';
   	 }
    linkstring +='<img src='+logo+' />';
   
   // alert(linkstring);
   document.getElementById('menulist').innerHTML=linkstring;
   return false;
  }

window.onload=function attach()
				{make_menu();}
