//Added by W.A. 06-19-2008
function roll_over(image_name, image_source) {
//image rollover code
   document[image_name].src = image_source;
}


//Created by W.A. for Carolina First main page list selection
function redirect(id) {
//function redirects selected item from list
	
	var index, link;
	
	index=document.getElementById(id).selectedIndex; //getting selected index value
	link=document.getElementById(id).options[index].value; //getting selected value
	if (index != 0) { //it ignores the first element which is QuickList
		location.href=link;
	}
}