// JavaScript Document
<!--
function over(el, clr, hvr) {
	el.style.backgroundColor = clr;
	if (hvr == "empty") {
	} else {
		el.children.tags('A')[0].style.color = hvr;
	}
	el.style.cursor = 'hand'
}

function out(el, clr, hvr) {
	el.style.backgroundColor = clr;
	if (hvr == "empty") {
	} else {
		el.children.tags('A')[0].style.color = hvr;
	}
}

function down(el, clr, hvr) {
	el.style.backgroundColor = clr;
	if (hvr == "empty") {
	} else {
		el.children.tags('A')[0].style.color = hvr;
	}
}

function up(path, target) {
	if (target == null) {
	parent.location.href = path;
	} else if (target == "blank") {
	window.open(path);
	}
}

function hoverItemOn(el) {
   el.style.color = '#000000';
}

function hoverItemOff(el) {
   el.style.color = '#666666';
}
//-->