// JavaScript Document
<!--
function random_imglink(){
  var myimages=new Array()
  //specify random images below. You can have as many as you wish
  myimages[1]="/fueledbanner.jpg"
  myimages[2]="/UMS_Shop_Shirt_Blk.gif"
  myimages[3]="/mikemaez.jpg"
  myimages[4]="/streetorstrip.jpg"
  myimages[5]="/desertimports.gif"
  myimages[6]="/mikemaez.jpg" 
  myimages[7]="/powernissanchandler.jpg"

  //specify corresponding links below
  var imagelinks=new Array()
  imagelinks[1]="http://www.fueledracing.com"
  imagelinks[2]="http://www.umstuning.com"
  imagelinks[3]="http://www.mikemaez.com"
  imagelinks[4]="http://streetorstripconcept.com"
  imagelinks[5]="http://www.desertimports.com"
  imagelinks[6]="http://www.mikemaez.com"
  imagelinks[7]="http://powernissanchandler.net"
  var ry=Math.floor(Math.random()*myimages.length)
  
   if (ry==0)
     ry=2
     document.write('<a href='+'"'+imagelinks[ry]+'"'+' target=ad><img src="'+myimages[ry]+'" border=0></a>')
}

 // random_imglink()
//-->