/*This is JavaScript Class for include into all CIS Web pages
**Quick Links list
**Created 11-9-2001 
**Author Paul Jarvis
************************************************************************/


function quickLinks(){
	var i = document.quickLink.theList.selectedIndex;
	document.location.href = document.quickLink.theList.options[i].value;

	}


optionList = new Array;
optionList[0] = "Go Directly to...&nbsp;&nbsp;&nbsp;&nbsp;";
optionList[1] = "One";
optionList[2] = "Two";
optionList[3] = "Three";
optionList[4] = "Four"
optionList[5] = "Five";
optionList[6] = "Six";
optionList[7] = "Seven";
optionList[8] = "Eight";
optionList[9] = "Nine";
optionList[10] = "Ten";



valueList = new Array;
valueList[0] = "#top";
valueList[1] = "index.html";
valueList[2] = "index.html";
valueList[3] = "index.html";
valueList[4] = "index.html";
valueList[5] = "index.html";
valueList[6] = "index.html";
valueList[7] = "index.html";
valueList[8] = "index.html";
valueList[9] = "index.html"
valueList[10] = "index.html";



