<!--
myURL = "/";
var iconPath = myURL + "images/navbuts/"
var rollIcon = "rol.jpg"
var origIcon = "but.jpg"
var textBlank="blank.gif"

//CREATE IMAGE ARRAY FOR PRLOAD
if (document.images)  {

var IconSrc = new Array(
  "comrol.jpg",
  "audrol.jpg",
  "webRefrol.jpg",
  "docrol.jpg",
  "imgrol.jpg",
  "maprol.jpg",
  "vidrol.jpg",	
  "audsub.gif",	
  "docsub.gif",	
  "imgsub.gif",	
  "mapsub.gif",	
   "vidsub.gif")

var IconList = new Array()

for (counter in IconSrc) {

	IconList[counter] = new Image()
	IconList[counter].src = iconPath + IconSrc[counter]
	}

}


function iconRoll(imgId,name,rollOn,textImg) {

  	if (document.images) {

				  	if(rollOn) {

								   document.images[imgId].src= iconPath + name + rollIcon
										 

								if (textImg) {

										document.images[textImg].src= iconPath + name + textImg + ".gif"
								}

				  } else {

								document.images[imgId].src = iconPath + name + origIcon

								if (textImg) {
										document.images[textImg].src= iconPath + textBlank
							}

		  	}				
			
  	}

	

}


//-->
