/* --------- testimonial script ------------ modified 14 April 2007 ------------- */
// re-arrange page z-Index for page and testimonials on funeral an memorial pages
 function chngB(numb)
  { var elemTestimony=document.getElementById("testmf1");
    var elemWholePage=document.getElementById("wholePage");
    var elemButton=document.getElementById("butn");
     //
    if(numb==1)
     { elemTestimony.style.zIndex=10;
       elemWholePage.style.zIndex=1;
       var build='<img id="vT" border="0" onmouseover="chng_it(this,\'p1\')" onmouseout="chng_it(this,\'p2\')" onclick="chngB(2)" src="images/vTp1.jpg" width="113" height="37">';
       elemButton.innerHTML=build;
      }
     //
     if(numb==2)
     { elemTestimony.style.zIndex=1;
       elemWholePage.style.zIndex=10;
       var build='<img id="vT" border="0" onmouseover="chng_it(this,\'1\')" onmouseout="chng_it(this,\'2\')" onclick="chngB(1)" src="images/vT1.jpg" width="113" height="37">';
       elemButton.innerHTML=build;
      }
    
  }
// -----------------
// toggle view testimonial button 
 function chng_it(obj,No)
  { var pnt=(No.length==1)?(No==1)?"T2" : "T1" : (No=="p1")?"Tp2" : "Tp1";
    var newSrc=obj.src.replace("T"+No,pnt);
    obj.src=newSrc;
    return true;
  }
// ----------------

