// Some menutext variables
	var textLayerHtml;
	var dontShowTextLayer = 1;
	
	function menuTextOn(thisSection) {
		if (browserName != "Opera") {
			thisText = eval('text' + thisSection);
			textLayerHtml = "<span class=\"txtdescripcion\">"+thisText+"</span>"; 
			rewriteTextLayer(textLayerHtml, 'botoverdiv');
			dontShowTextLayer = 1;
			show('botoverdiv');
		}
	}
	
	function rewriteTextLayer(txt, id) {
		txt += "\n";
		// NS6
		if (browserNew && browserName == "NS") {
			botOver = document.getElementById(id);
			range = document.createRange();
			range.setStartBefore(botOver);
			domfrag = range.createContextualFragment(txt);
			while (botOver.hasChildNodes()) {
				botOver.removeChild(botOver.lastChild);
			}
			botOver.appendChild(domfrag);
		}
		// IE 4+
		else {
			document.all[id].innerHTML = txt;
		}
	}
	
	function menuTextOff() {
		if (browserName != "Opera") {
			dontShowTextLayer = 0;
			hide('botoverdiv');
			self.status = '';
		}
	}

