var quoteblock=new Array()
quoteblock[0]='<blockquote><p class="noMarginTop">"Providing, meaning to a mass of unrelated needs, ideas, words and pictures - it is the designer&rsquo;s job to select and fit this material together and make it interesting."</p><p class="quoteName">Paul Rand</p><p class="quoteInfo">1914-1996</p></blockquote>'
quoteblock[1]='<blockquote><p class="noMarginTop">"...the excitement of designing everything from the spoon to the&nbsp;city&rsquo;."</p><p class="quoteName">Massimo Vignelli</p></blockquote>'


function randomorder(targetarray, spacing) {
  var randomorder=new Array()
  var the_one
  var z=1
  for (i=0;i<targetarray.length;i++)
  randomorder[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++
    }
  }
}
