    var items = new Array(
	  new menuItem("home",   "../contentframe.htm", "Home"),
	  new menuItem("vf1000f",   "../VF1000F/index.htm", "History of the VF1000F"),
	  new menuItem("vf1000f2",   "../VF1000F2/index.htm", "History of the VF1000F2"),
	  new menuItem("vf1000r",   "../VF1000R/index.htm", "History of the VF1000R"),
	  new menuItem("brochure",   "brochure.htm", "Sales Brochure"),
	  new menuItem("specs",   "specs.htm", "Specifications")

	);	
	
	function makeSubMenu(selectedItem){
	 return makeMenu("../images/", items, selectedItem);
	}
	
	function subMenuImgOn(imgName, index){
	 return menuImgOn(imgName, index, items);
	}

	function subMenuImgOff(imgName, index){
	 return menuImgOff(imgName, index, items);
	}