imgroll = new Array();
imgroll[14] = "md-terps-today-avw"
imgroll[12] = "md-terps-today-comcast"
imgroll[11] = "md-terps-today-ftt"
imgroll[15] = "md-terps-today-jtc"
imgroll[16] = "md-terps-today-market"
imgroll[17] = "md-terps-today-community"
imgroll[2] = "md-terps-today-fyi"
imgroll[3] = "md-terps-today-nclips"
imgroll[4] = "md-terps-today-pjrnals"
imgroll[5] = "md-terps-today-photos"
imgroll[6] = "md-terps-today-pcards"
imgroll[13] = "md-terps-today-ttm"



imgroll[1] = "md-terps-today-aotw"
imgroll[7] = "md-ts-marketing-tterp"
imgroll[8] = "md-ts-marketing-spons"
imgroll[9] = "md-ts-marketing-promos"
imgroll[10] = "md-ts-marketing-comcast"



onimages = new Array();
offimages = new Array();
for(i=0; i < imgroll.length; i++){
	onimages[i] =  new Image();
	onimages[i].src = "http://graphics.fansonly.com/schools/md/graphics/"+imgroll[i]+"-on.gif";
	offimages[i] =  new Image();
	offimages[i].src = "http://graphics.fansonly.com/schools/md/graphics/"+imgroll[i]+"-off.gif";
}
function imgOn(imageName) {
	num = imageName.split("e");
	document[imageName].src = onimages[num[1]].src;  
}
function imgOff(imageName) {  
	num = imageName.split("e");
	document[imageName].src = offimages[num[1]].src;  
}
