// JavaScript Document

function tdRoll(theTD,state) {
	if(state==1) {
		document.getElementById(theTD).className = 'linkNavigationTDhover';
	} else {
		document.getElementById(theTD).className = 'linkNavigationTDregular';
	}
}

function tdRollSub(theTD,state) {
	if(state==1) {
		document.getElementById(theTD).className = 'linkSubNavTDhover';
	} else {
		document.getElementById(theTD).className = 'linkSubNavTDregular';
	}
}