<!--
	var ToolbarMap = new RolloverImageMap();
	
	ToolbarMap.defaultLabel = new Image();
	
	ToolbarMap.setDefaultLabel = function(obj) {
		if (this.defaultLabel.src == null || this.defaultLabel.src == '') {
			this.defaultLabel.src = obj.src;
		}
	}
	
	ToolbarMap.add = function(obj) {
		oImage = this.Images[this.Images.length] = new String(obj.name);
		oImage.obj = new RolloverImage(obj);
		oImage.lbl = new Image();
		oImage.lbl.src = obj.src.substring(0,obj.src.lastIndexOf("/")) + "/lbl_" + obj.src.substring(obj.src.lastIndexOf("/")+1, obj.src.length);
		//alert(obj.src.substring(0,obj.src.lastIndexOf("/")) + "/lbl_" + obj.src.substring(obj.src.lastIndexOf("/")+1, obj.src.length));
	}
	
	ToolbarMap.get = function(key) {
		for (i=0; i < this.Images.length; i++) {
			if (key == this.Images[i]) {
				return this.Images[i];
			}
		}
	}
	
	ToolbarMap.setOn = function(key) {		
		oImage = this.get(key);
		if (oImage != null && oImage.obj != null) {
			oImage.obj.setOn();
			this.label.src = oImage.lbl.src;
		}
		
		if (this.label != null && oImage != null && oImage.lbl != null) {
			this.label.src = oImage.lbl.src;
		}
	}
	
	ToolbarMap.setOff = function(key) {
		oImage = this.get(key);
		if (oImage != null && oImage.obj != null) {
			oImage.obj.setOff();			
		}
		
		if (this.label != null) {
			//alert(this.defaultLabel.src);
			this.label.src = this.defaultLabel.src;
		}
	}
	
	ToolbarMap.view = function(migration, topic, type) {
		switch (type) {
			//case "images":
			case "image":
				parent.location.href = "../gallery/index.cfm?migration=" + migration + "&topic=" + topic + "&type=" + type;
				break;
			case "map":
				parent.location.href = "../gallery/index.cfm?migration=" + migration + "&topic=" + topic + "&type=" + type;
				break;
			//case "texts":
			case "text":
				parent.location.href = "../texts/index.cfm?migration=" + migration + "&topic=" + topic + "&type=" + type;
				break;
			case "educationmaterials":
				parent.location.href = "../education/detail.cfm?migration=" + migration + "&topic=" + topic + "&type=" + type;
				break;
		}
	}
	
//-->