
     var testimonialArray = new Array();
    //testimonialArray[0] = "''SoftEB has been a blessing for us, they were precise and right on time.<br />"+"I would recoment them to everyone.''";
    testimonialArray[0] = "''Thank you for an outstanding job. We are very satisfied of our finished product. The feedback to our site has been nothing short of sensational.''";
    testimonialArray[1] = "''Right from the beginning your company shown professionalism and I am glad on my decision to choose you for the job''";
    testimonialArray[2] = "''Thanks to the whole team who made this all possible. You are a class act with a class product.''";
    testimonialArray[3] = "''In the current competitive market, your Free website Demo really helped us staying in a comfort zone while making an investment decision.''";
    testimonialArray[4] = "''Free Demo proved to be exactly what we were looking for which make us trust your work and the end result is just perfect''";
    
    var testimonialArrayBy = new Array();
    testimonialArrayBy[0] = ".......By Voip Corp";
    testimonialArrayBy[1] = ".......By Voip Corp";
    testimonialArrayBy[2] = ".......By Tomkins";
    testimonialArrayBy[3] = ".......By Tomkins";
    testimonialArrayBy[4] = ".......By Tomkins";
    
    
     _index = 0;
    function UpdateTestimonials()
    {
    
    //changeTest()
    setTimeout("changeTest()", 100);
     
    
    //alert('adnan');
    
    
    setTimeout("UpdateTestimonials()",8000);
   //UpdateTestimonials();
    
    }
    
    function changeTest()
    {
   if(_index>4)
   {
   _index = 0;
   }
    
    var _testimonial = document.getElementById("txtTestimonials");
    var _testimonialBy = document.getElementById("txtTestimonialsBy");
    
     
     _testimonial.innerHTML = testimonialArray[_index];
     _testimonialBy.innerHTML = testimonialArrayBy[_index];
    _index++;
     return true;
    }
    //window.onload=UpdateTestimonials();