function OverMenu ( ID )
{
     document.getElementById ( ID ).className = "OverMenu" ; 		
}
function OutMenu ( ID )
{
    document.getElementById ( ID ).className = "Menu" ; 		 
}


function OverLink ( ID )
{
     document.getElementById ( ID ).style.color = "#D26115" ; 		
     document.getElementById ( ID ).style.textDecoration = "underline" ; 		 	
}

function OutLink ( ID )
{
    document.getElementById ( ID ).style.color = "#D26115" ; 		 
    document.getElementById ( ID ).style.textDecoration = "none" ; 		 
}