// JavaScript for hiding and displaying DIVs.

function ChangeDIV(id) {
	document.getElementById(id).className = 'menu-link-area-over menu_text-over';
}

function ToggleDIV(id) {
	document.getElementById(id).className = 'menu-link-area menu_text';
}

function titleDIV(id) {
	document.getElementById(id).className = 'bottom-body-title bottom-menu-text-over';
}

function titleToggleDIV(id) {
	document.getElementById(id).className = 'bottom-body-title bottom-menu-text';
}

function textDIV(id) {
	document.getElementById(id).className = 'bottom-body-text small-gray-text-over';
}

function textToggleDIV(id) {
	document.getElementById(id).className = 'bottom-body-text small-gray-text-nohover';
}

function textPanelDIV(id) {
	document.getElementById(id).className = 'bottom-body-text small-gray-text-over panel-gap';
}

function textPanelToggleDIV(id) {
	document.getElementById(id).className = 'bottom-body-text small-gray-text-nohover panel-gap';
}


