
/*
	This code is used to change the display properties of the links and navigation items
*/

//******* Set some Globals **************
// var anthing;
/******* Functions **************/
function test(str){alert(str);}

function hasClass(obj) {
     var result = false;
     if (obj.getAttributeNode("class") != null) {
         result = obj.getAttributeNode("class").value;
     }
     return result;
  }  

//********************************************************************** 
function leftNavLink(obj){
	obj.style.color = 'white';
	obj.style.backgroundColor = "#FFFFFF";
}

function leftNavHover(obj){
	//alert('hover');
	obj.style.color = 'black';
	obj.style.backgroundColor = "#A9B5CB";
}
 //************************************************************************
 
function topNavLink(obj){
	obj.style.color = '#FFFFFF';
	obj.style.backgroundColor = "#9ACD68";
}

function topNavHover(obj){
	obj.style.color = '#000000';
	obj.style.backgroundColor = "#99CC33";
}

function topNavLink2(obj){
	obj.style.color = 'white';
	obj.style.backgroundColor = "#336633";
}

function topNavHover2(obj){
	obj.style.color = 'black';
	obj.style.backgroundColor = "#99CC33";
}

function topNavLink3(obj){
	obj.style.color = '#0000FF';
	obj.style.backgroundColor = "#99CC33";
}

function footNavLink(obj){
	obj.style.color = 'black';
	obj.style.backgroundColor = "#9ACD68";
	//obj.className = 'footnavMenu';
}

function footNavHover(obj){
	obj.style.color = 'white';
	obj.style.backgroundColor = "#336633";
	//obj.className = 'footnavMenuJS';
}

// Clear the search text box
function clearSearch(){
	document.frmTopNav.search.value = "";
}

//************************************

