// JavaScript Document

function navOn(ctg){
document.getElementById(ctg).style.backgroundColor='#8ec31f';
document.getElementById(ctg).style.color='#ffffff';}

function navOut(ctg){
document.getElementById(ctg).style.backgroundColor='#ffffff';
document.getElementById(ctg).style.color='#121212';}

