function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function random_imglink(){
	 
  var myimages=new Array()
  //specify random images below. You can have as many as you wish
  myimages[1]="http://nerf-this.com/scoutcrossing.net/js/motokool.png"
  myimages[2]="http://nerf-this.com/scoutcrossing.net/js/store.png"
  myimages[3]="http://nerf-this.com/scoutcrossing.net/js/nerfthis.png"

  //specify corresponding links below
  var imagelinks=new Array()
  imagelinks[1]="http://motokool.net/"
  imagelinks[2]="http://nerf-this.com/store/"
  imagelinks[3]="http://nerf-this.com/"

  var ry=Math.floor(Math.random()*myimages.length)

  if (ry==0)
     ry=1
	 document.write('<style type="text/css">');
	 document.write('img{border:none;}');
	 document.write('#random-images {');
	 document.write('background-color:;');
	 document.write('width:430px;');
	 document.write('height:75px;');
	 document.write('}');
	
	 document.write('</style>');
	 
	 document.write('<div id="random-images">');
     document.write('<table width="430" border="0" cellspacing="0" cellpadding="2"><tr><td>');
	 	 
	 document.write('<center>');
	 document.write('<a href='+'"'+imagelinks[ry]+'"'+'><img src="'+myimages[ry]+'" border=0></a>')
	 document.write('</td></tr>');
	 document.write('</center>');	 
	 document.write('</table>');

	 document.write('</div>');

}

  random_imglink()
