/* ROTATING QUOTE START */

  var speed=10000;    /*this is the time in milliseconds adjust to suit*/
  var c=0;

function showQuote() {

   quotes=[ /*careful with kommas at the end of each quote, except the last*/
   
'Greg Boutin was instrumental in positioning a shared <div class="lowerrightimg"><img src="images/quotationend.png" alt="" /></div>client for a successful angel financing round.<div class="authorquote">Board member <br>at several tech firms</div>',

'Do not work with Greg if you want your app launch to flop <div class="lowerrightimg"><img src="images/quotationend.png" alt="" /></div>and your startup to not make money. <div class="authorquote">Founder, retail mobile app</div>',

'Greg customized WordPress for our app, drove market specs for our product, built our community, and generally made us <div class="lowerrightimg"><img src="images/quotationend.png" alt="" /></div>a ton more credible to users and investors.<div class="authorquote">Co-founder, music web app</div>',

'Greg guided me from product conception to fundraising. He excels at what he does, <div class="lowerrightimg"><img src="images/quotationend.png" alt="" /></div>and he gets a lot done.<div class="authorquote">Founder, social semantic startup</div>',

'Greg automated our sales proposal tool in Excel so our sales folks <div class="lowerrightimg"><img src="images/quotationend.png" alt="" /></div> can now focus on closing rather than reinventing the wheel.<div class="authorquote">CEO, clean energy system manufacturer</div>',

'Without GrowthRoute, we would have entered the wrong market at the wrong time with the wrong partner. <div class="lowerrightimg"><img src="images/quotationend.png" alt="" /></div>Call Greg and don\'t look back.<div class="authorquote">CEO, B2B platform company</div>',

'Greg helped us narrow down our target markets, identify missing elements for a "whole product", and <div class="lowerrightimg"><img src="images/quotationend.png" alt="" /></div>build a sales team from scratch<div class="authorquote">CEO, clean energy system manufacturer</div>',

'Growthroute\'s due diligence work is first-class. Greg brought in another expert and together they <div class="lowerrightimg"><img src="images/quotationend.png" alt="" /></div>nailed and prioritized all key investment risks.<div class="authorquote">Head of cleantech venture financing institution</div>',

'Two months before a major tradeshow, we called Growthroute to help us prepare. Then we secured many more leads <div class="lowerrightimg"><img src="images/quotationend.png" alt="" /></div>than we would have otherwise.<div class="authorquote">VP, E-health logistic solution provider</div>'

         ];

   c++;
if(c==quotes.length) {
   c=0;
 }
   document.getElementById('quote').innerHTML=quotes[c];

   setTimeout(function(){showQuote()},speed);
 }

if(window.addEventListener){
   window.addEventListener('load',function(){setTimeout(function(){showQuote()},speed)},false);
 }
else { 
if(window.attachEvent){
   window.attachEvent('onload',function(){setTimeout(function(){showQuote()},speed)});
  }
 }

/* ROTATING QUOTE END */

