		function addHD_Gold(theID){
			document.getElementById(theID).style.color = "#ab8a1a";
		}
		function addHD_Blue(theID){
			document.getElementById(theID).style.color = "#00335e";
		}

		function addlink(theID){
			document.getElementById(theID).style.color = "#0E707A";
		}
		
		function removecolor(theID){
			document.getElementById(theID).style.color = "";
		}
		function addlinkbg(theID){
			theID.className = "linkbg";
		}

		function addHD_Goldbg(theID){
			theID.className = "HD_Goldbg";
		}

		function addHD_Bluebg(theID){
			theID.className = "HD_Bluebg";
		}
		
		function changebg(theID){
			theID.className = currentcolor+"bg";
		}
			
		function getcolor(color){
			
			if (color == 'HD_Blue')
				hex = '#00335e';
			if (color == 'HD_Gold')
				hex = '#ab8a1a';
				
			return hex;
		}
		
