var quoteblock=new Array()
quoteblock[0]='<blockquote><p class="noMarginTop">"Ben was professional, timely in his responses, and easy to work with. Thanks Ben!"</p><p class="quoteName">Tom Klaus</p><p class="quoteInfo">Advocates for Youth</p></blockquote>'
quoteblock[1]='<blockquote><p class="noMarginTop">"Ben worked <br/>timely and was very cost effective. He dramatically improved the ease of use and design of our web presence and I would hire him again.</p><p class="quoteName">Brian Welde</p><p class="quoteInfo">Angling Technologies</p></blockquote>'
quoteblock[2]='<blockquote><p class="noMarginTop">"I was impressed by his design knowledge and creative skills. I was sorry when he moved away to pursue his career in DC, but if he ever moves back to central NY &mdash; I&rsquo;d hire him again in an instant! Highly recommended."</p><p class="quoteName">Julia Reich</p><p class="quoteInfo">Julia Reich Design</p></blockquote>'
quoteblock[3]='<blockquote><p class="noMarginTop">"Ben brought his artistic approach to our relatively static subject matter... He&nbsp;regularly exceeded our expectations and would be an asset to any firm."</p><p class="quoteName">Denise Bliss</p><p class="quoteInfo">Carrier Corporation</p></blockquote>'


function randomorder2(targetarray, spacing) {
  var randomorder2=new Array()
  var the_one
  var z=3
  for (i=0;i<targetarray.length;i++)
  randomorder2[i]=i

  while (z<targetarray.length) {
    the_one=Math.floor(Math.random()*targetarray.length)
    if (targetarray[the_one]!="_selected!"){
      document.write(targetarray[the_one]+spacing)
      targetarray[the_one]="_selected!"
      z++
    }
  }
}
