// JavaScript Document

function setNav(){
	
	//Sets the navbar button
	if(currentNavBtn != '') { $(currentNavBtn).className = 'navBtnSelect'; }
	
}

function init() {
	
	//Set the navbar button selection
	if(currentNavBtn != '') { $(currentNavBtn).className = 'navBtnSelect'; }
	
	cH = Element.getHeight('mainContent');
	if (cH < 1024) { cH = 1024 } else { cH = Element.getHeight('mainContent'); }
	$('mainContent').style.height = cH + 'px';
	$('sideNav').style.height     = cH + 'px';
	
	outterHeight = Element.getHeight('borderOrnament');
	$('leftBorderOrnament').style.height = outterHeight + 'px';
	$('rightBorderOrnament').style.height = outterHeight + 'px';
	
}

function btnHILITE(id){
	
	$('link'+id).style.background='#006699';
	$('text'+id).style.color="#00ffff";
	$('btn'+id).style.background='#006699';
	
	
}

function btnOFF(id){

	$('link'+id).style.background='';
	$('text'+id).style.color='';
	$('btn'+id).style.background='';
	
}