
function changeIt(name)
{
  
   switch(name){
     case 'amber':
       frames['testimonyText'].location.href ="testimonyTextAmber.htm"
       frames['testimonyName'].location.href ="testimonyNameAmber.htm"
     break;
     case 'dreanna':
       frames['testimonyText'].location.href ="testimonyTextDreanna.htm"
       frames['testimonyName'].location.href ="testimonyNameDreanna.htm"
     break;
     case 'tim': 
       frames['testimonyText'].location.href = "testimonyTextTim.htm"
       frames['testimonyName'].location.href ="testimonyNameTim.htm"
     break;
     case 'shirley': 
       frames['testimonyText'].location.href = "testimonyTextShirley.htm"
       frames['testimonyName'].location.href ="testimonyNameShirley.htm"
     break;
     case 'alicia': 
       frames['testimonyText'].location.href = "testimonyTextAlicia.htm"
       frames['testimonyName'].location.href ="testimonyNameAlicia.htm"
     break;
     case 'brad': 
       frames['testimonyText'].location.href = "testimonyTextBrad.htm"
       frames['testimonyName'].location.href ="testimonyNameBrad.htm"
     break;
     case 'mike': 
       frames['testimonyText'].location.href = "testimonyTextMike.htm"
       frames['testimonyName'].location.href ="testimonyNameMike.htm"
     break;
     case 'roseana': 
       frames['testimonyText'].location.href = "testimonyTextRoseana.htm"
       frames['testimonyName'].location.href ="testimonyNameRoseana.htm"
     break;
     default:
       frames['testimonyText'].location.href ="testimonyTextAmber.htm";
   }
           
} 


