var quotebrief=['INVALUABLE','IN-DEPTH','NEVER FAILS'];
var quotefull=[
               "Parliamentary Brief provides an invaluable guide to Westminster debate, with a range of independent voices and intelligent analysis helping to inform the deliberations of MPs.",
               "Parliamentary Brief's coverage of current affairs is both informed and in-depth.  By drawing from such  a wide pool of contributors, it always provides a fresh insight into the issues of the day.",
               "This publication is an essential read.  It never fails to provide absorbing and insightful articles over a wide range of policy areas."
               ];
var quoteauth=['<strong>Gordon Brown</strong>, Prime Minister','<strong>David Cameron</strong>, Leader, Conservative Party', '<strong>Nick Clegg</strong>, Leader, Liberal Democrats'];
var cQuote=0;
var maxQuote=2;

function switch_quote() {
  var h=document.getElementById("testim_head");
  var b=document.getElementById("testim_body");
  var a=document.getElementById("testim_auth");
  h.innerHTML=quotebrief[cQuote];
  b.innerHTML="&quot;"+quotefull[cQuote]+"&quot;";
  a.innerHTML=quoteauth[cQuote];
  if(cQuote==maxQuote) cQuote=0;
  else cQuote++;
}

