<!--
var curIndex=0;
quotes = new Array();
authors = new Array();
quotes[0] = "Velocity Integrations worked closely with our software team to create a well tailored solution that mapped to our requirements 100%.<br>We are one of the leading ISPs at Pakistan with 70+ products on the portfolio, selected VI Service Desk for Trouble-Ticketing, Automated Escalations,<br>Inventory ,SLA Management and Reporting - Exceeded our expectations in a big way!!!" 
authors[0] = "<strong>CYBERNET Pakistan<br>Mustafa F. Rana<br>Regional Manager of Operations</strong>";
quotes[1] = "We're extremely happy with the service we  receive from Velocity Integrations. I would say its the best service we have received from any IT company ever.<br>As soon as you make a request or have an issue, they respond straight away, as they always treat each request as a priority.<br>They have met my expectations and exceeded them each time.<br>Keep up the good work.";
authors[1] = "<strong>Hitachi Australia Ltd.<br>Michael Elsner<br>HD Operations Mgr.</strong>";
quotes[2] = "The VI Service Desk has dramatically increased the productivity of our IT staff. Install was fast and simple, and we noticed results immediately.";
authors[2] = "<strong>Phoenix Home Life<br>Ronald J Hyson<br>Director of IT Infrastructure</strong>";
quotes[3] = "The Software Solution that Velocity Integrations has created, is ideal for our clientele as it enables them to more effectively manage IT infrastructure at a cost benefit that is compelling. I recommend this solution for organizations that either have or are looking for a more effective trouble analysis system.";
authors[3] = "<strong>The Consulting Practice<br>Jamie Chillingworth<br>President & CIO</strong>";
quotes[4] = "Velocity Integrations worked closely with my staff to create a well tailored solution that was cost effective and on time.They are always readily available to handle any questions or support requests. I look forward to working with Velocity in the future.";
authors[4] = "<strong>Simcona Electronics<br>Marc Iacona<br>President</strong>";
quotes[5] = "The help desk software has been great for us.  It's full of all of the right useful features and it has been a big helping in routing and managing tickets. The asset management has also been a very useful tool in keeping track of our systems and in keeping repair history.  It's a very smart and intuitive design.";
authors[5] = "<strong>Applegate Farms<br>Mark Wojciechowicz<br>IT Manager</strong>";
quotes[5] = "I was very skeptical about ticket systems but I am now a believer in them. Velocity Integrations provides a trouble ticket system that is tightly integrated with Lotus Notes. They have been very willing to customize their product at an extremely affordable price. The system is complete and has many more features then we are currently using. I highly recommend this solution to other MILLIMAN departments in North America.";
authors[5] = "<strong>MILLIMAN<br>Carl Peterson<br>Director of IT</strong>";

function showNext() {
  curIndex++;
  if (curIndex >= quotes.length) {
    curIndex = 0;
  }
  
  var container = window.document.getElementById("testimonials");
  container.innerHTML = "<div style='height:275px'><p style='margin-top:5px;margin-left:5px;margin-right:5px;margin-bottom:5px;font-size: 11px;font-family: verdana;'><font color='#5b75a3'>&quot;" + quotes[curIndex] + "&quot;<\/font><\/p><p align='left' style='margin-top:5px;margin-left:5px;margin-right:5px;margin-bottom:5px;font-size: 11px;font-family: verdana;color: #5b75a3;'>" + authors[curIndex] + "<\/p><p align='right' style='margin-top:5px;margin-left:5px;margin-right:5px;margin-bottom:5px;font-size: 11px;font-family: verdana;color: #2c2c2c;'>&gt;&nbsp;<a href='' style='text-decoration: none;' onClick='showNext();return false;' onFocus='if(this.blur)this.blur()'>Read more<\/a><\/p></div>\n"
  return;
}


function showit() {
  var container = window.document.getElementById("testimonials");
  index = Math.floor(Math.random() * quotes.length);
  curIndex = index;
  container.innerHTML = "<p style='margin-top:5px;margin-left:5px;margin-right:5px;margin-bottom:5px;font-size: 11px;font-family: verdana;'><font color='#5b75a3'>&quot;" + quotes[curIndex] + "&quot;<\/font><\/p><p align='left' style='margin-top:5px;margin-left:5px;margin-right:5px;margin-bottom:5px;font-size: 11px;font-family: verdana;color: #5b75a3;'>" + authors[curIndex] + "<\/p><p align='right' style='margin-top:5px;margin-left:5px;margin-right:5px;margin-bottom:5px;font-size: 11px;font-family: verdana;color: #2c2c2c;'>&gt;&nbsp;<a href='' style='text-decoration: none;' onClick='showNext();return false;' onFocus='if(this.blur)this.blur()'>Read more<\/a><\/p>\n"
  return;
}


// -->

