function highRow(LinkObject)	{
	LinkObject.style.background='#c7e7a7'; //LinkObject.style.background='#9C9277';
	LinkObject.style.cursor='hand';

}

function lowRow(LinkObject, level)	{
	
	if (level == 1){
		LinkObject.style.background='#f4f8ef';
	}
	
	if (level == 2){
		LinkObject.style.background='#edf6e4';
	}
	
	if (level == 3){
		LinkObject.style.background='#e4f3d5';
	}
	
	if (level == 4){
		LinkObject.style.background='#d6ebc2';
	}
	if (level == 5){
		LinkObject.style.background='#d6ebc2';
	}
	
	LinkObject.style.cursor='hand';
}

function overLink(linkHref){
	window.location.href=linkHref;
}
