
function random_imglink(){
  var myimages=new Array()
  //specify random images below. You can have as many as you wish
  myimages[1]="http://www.freebratzdressupgames.com/bigout/1.gif"
  myimages[2]="http://www.freebratzdressupgames.com/bigout/2.jpg"
  myimages[3]="http://www.freebratzdressupgames.com/bigout/3.jpg"
  myimages[4]="http://www.freebratzdressupgames.com/bigout/4.jpg"
  myimages[5]="http://www.freebratzdressupgames.com/bigout/7.jpg"
 
  //specify corresponding links below
  var imagelinks=new Array()
  imagelinks[1]="http://www.watchbratz.com/"
  imagelinks[2]="http://www.freebratzdressupgames.com/bratz-games/48/Games-For-Girls"
  imagelinks[3]="http://www.freegirlgames.net/free-girl-games/15/Cooking-Games"
  imagelinks[4]="http://www.freegirlgames.net/free-girl-games/19/Hair-Dresser-Games"
  imagelinks[5]="http://www.freebratzdressupgames.com/bratz-games/111/Make-Up-Games"
  
  var ry=Math.floor(Math.random()*myimages.length)

  if (ry==0)
     ry=1
     document.write('<a href='+'"'+imagelinks[ry]+'"'+' target="_blank" rel="nofollow"><img src="'+myimages[ry]+'" border=0 width="250" height="250"></a>')
}

  random_imglink()
//-->