function rollOverCss(element,textElement,disabled) {
	if (disabled) {
		element.style.background = "url('/images/navbar_bg_disabled.gif') repeat-x";
		if (element.childNodes[0]) {
			if (element.childNodes[0].style) {
				element.childNodes[0].style.background = "none";
			}
		}
	} else {
		element.style.background = "url('/images/navbar_bg_sel.gif') repeat-x";
		textElement.style.color = 'white';
	}
}

function rollOutCss(element,textElement) {
	element.style.background = "url('/images/navbar_bg.gif') repeat-x";
	textElement.style.color = 'black';
}
function oeElement(id) {
	if (document.getElementById != null) {
		return document.getElementById(id);
	}
	if (document.all != null) {
		return document.all[id];
	}
	if (document.layers != null) {
		return document.layers[id];
	}
	return null;
}