

//Navigation rollover
function NavIn(menItem) {
	menItem.style.borderColor='#444444'; 
	menItem.style.backgroundColor='#034C71';
}

function NavOut(menItem) {
	menItem.style.borderColor='#000000'; 
	menItem.style.backgroundColor='#025E8E';
}

function NavCat(menItem) {
	menItem.style.borderColor='#444444'; 
	menItem.style.backgroundColor='#006699';
}