
function ov_mouse(a,b)
{
   pic='pic'+b+'b';
   phd='phd'+b;
   if(b==5){
       a.style.height='164px'; 
       a.style.width='119px'; 
   }
   else{
       a.style.height='86px'; 
       a.style.width='123px'; 
   }
   a.src='/images/'+pic+'.jpg';
   document.getElementById(phd).style.top='3px';
}

function out_mouse(a,b)
{
   pic='pic'+b;
   phd='phd'+b;
   if(b==5){
       a.style.height='152px'; 
       a.style.width='110px'; 
   }
   else{
       a.style.height='77px'; 
       a.style.width='110px'; 
   }
   a.src='/images/'+pic+'.jpg';
   document.getElementById(phd).style.top='8px';
}

