// JavaScript Document

	function changeColorOver(idObj,colorObj)
    {
        document.getElementById(idObj).style.color = colorObj; 
		document.getElementById(idObj).style.padding = "0px 0px 0px 0px"; 
		document.getElementById(idObj).style.fontWeight = 'bold';
    } 
	
	function changeColorOut(idObj,colorObj)
    {
        document.getElementById(idObj).style.color = colorObj; 
		document.getElementById(idObj).style.padding = "0px 0px 0px 0px"; 
		document.getElementById(idObj).style.fontWeight = 'normal';
    } 
	
	function changeColorOverPeople(idObj,colorObj)
    {
        document.getElementById(idObj).style.color = colorObj; 
		document.getElementById(idObj).style.fontWeight = 'bold';
    } 
	
	function changeColorOutPeople(idObj,colorObj)
    {
        document.getElementById(idObj).style.color = colorObj; 
		document.getElementById(idObj).style.fontWeight = 'normal';
    } 