<!--//
/* FUNCTION TO CHANGE THE STYLE ON THE NEWS PAGING NUMBERS ON THE HOMEPAGE */
function change(id, newClass, oldClass) 
{
for(i=0; i<4; i++)
   {
      var theid = 'num' + i;
   
      identity=document.getElementById(theid);
      identity.className=oldClass;
   }   

   identity=document.getElementById(id);   
   identity.className=newClass;
}
//-->