﻿function inti()
{
document.getElementById("scroll_testimonial_2").innerHTML=document.getElementById("scroll_testimonial_1").innerHTML;
scroll1();
}
function scroll1()
{
 var a=document.getElementById("scroll_testimonial_1");
 var b=document.getElementById("scroll_testimonial_2");
 var l=document.getElementById("Layer1");
 
 if(b.offsetTop==l.scrollTop)
 {
  l.scrollTop=0;
 }
 else 
 {
  l.scrollTop++;
 }
 setTimeout("scroll1()",50);
}

