
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/6.jpg"
  myimages[2]="http://www.freebratzdressupgames.com/bigout/8.jpg"
  myimages[3]="http://www.freebratzdressupgames.com/bigout/10.jpg"
  myimages[4]="http://www.freebratzdressupgames.com/bigout/11.jpg"
  myimages[5]="http://www.freebratzdressupgames.com/bigout/5.jpg"
 
  //specify corresponding links below
  var imagelinks=new Array()
  imagelinks[1]="http://www.freebratzgames.net"
  imagelinks[2]="http://www.freebratzgames.net"
  imagelinks[3]="http://www.dailycookinggames.com"
  imagelinks[4]="http://www.dailycookinggames.com"
  imagelinks[5]="http://www.dailydressupgames.com/"
  
  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="275" height="275"></a>')
}

  random_imglink()
//-->
