var clblock=new Array()
clblock[0]='<a href="about.jsp" title="Client"><img src="img/clients_lucky.gif" alt="Lucky Brand Jeans" /></a>'
clblock[1]='<a href="about.jsp" title="Client"><img src="img/clients_banana.png" alt="Banana 101.5 FM" /></a>'
clblock[2]='<a href="about.jsp" title="Client"><img src="img/clients_cwebb.png" alt="Chris Webber Foundation" /></a>'
clblock[3]='<a href="about.jsp" title="Client"><img src="img/clients_freedom.png" alt="Freedom Hill Ampitheatre" /></a>'
clblock[4]='<a href="about.jsp" title="Client"><img src="img/clients_club937.png" alt="Club 93.7 FM" /></a>'
clblock[5]='<a href="about.jsp" title="Client"><img src="img/clients_cars.png" alt="Cars 101.8 FM" /></a>'
clblock[6]='<a href="about.jsp" title="Client"><img src="img/clients_hooters.png" alt="Hooters Resteraunts" /></a>'
clblock[7]='<a href="about.jsp" title="Client"><img src="img/clients_redbull.png" alt="RedBull Air Race" /></a>'


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


var ftblock=new Array()
ftblock[0]='<a href="news.jsp" title="As Featured In"><img src="img/featured.png" alt="ABC News" /></a>'
ftblock[1]='<a href="news.jsp" title="As Featured In"><img src="img/featured_max.png" alt="Maxim Magazine" /></a>'
ftblock[2]='<a href="news.jsp" title="As Featured In"><img src="img/featured_biz20.png" alt="Business2.0 Magazine" /></a>'
ftblock[3]='<a href="news.jsp" title="As Featured In"><img src="img/featured_z!nk.png" alt="Z!NK Magazine" /></a>'


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

  while (y<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!"
      y++
    }
  }
}