var ie4 = (document.all)? true:false
var dom = (document.getElementById)? true:false

if (document.images) {
	var Image1 = new Image(132,18);
    var Image1_Active = new Image(132,18);
	
	
	Image1.src = "/images/MenuLibraryServices.gif";
    Image1_Active.src = "/images/MenuLibraryServices_active.gif";
	
}

function indexOver (imgName) {
	if(document.images){
		document.images[imgName].src='/images/'+imgName+'_active.gif';
		}
	}
function indexOut (imgName) {
	if(document.images){
		document.images[imgName].src='/images/'+imgName+'.gif';
		}
	}

function on(id){
	if(dom)	id.parentNode.style.background = '#339999';
}
function off(id){
	if(dom) id.parentNode.style.background = '#86D3C5';
}


	
