// random link

function makeArray()
 { var args = makeArray.arguments;
   for (var i=0; i<args.length; i++)
	  { this[i] = args[i]; }
	 this.length = args.length;
 }

var Links = new makeArray("http://www.aquarionics.com/",
	"http://bofh.ntk.net/Bastard1.html",
	"http://extraverse.orcon.net.nz/",
	"http://freespace.virgin.net/loony.website/index2.html",
	"http://groups.google.com/groups?hl=en&lr=&safe=off&group=alt.fan.pratchett",
	"http://jal54.trin.cam.ac.uk/",
	"http://jero.simplenet.com/purity/",
	"http://members.aol.com/spoons1000/break/index.html",
	"http://mischanet.net/archive/index_drabble.html",
	"http://test.thespark.com/deathtest/",
	"http://totl.net/Religion/",
	"http://twas.brillig.and.the.slithy.toves.did.gyre.and.gimble.in.the.wabe.all.mimsy.were.the.borogoves.and.the.mome.raths.outgrabe.jabberwocky.com/",
	"http://wibblehome.orcon.net.nz/life/a_day.html",
	"http://www.algonet.se/~geekling/",
	"http://www.befriender.org/",
  "http://www.caomhin.demon.co.uk/",
	"http://www.channel4.com/nextstep/metrosexuality/metrosex/main_test.htm",
	"http://www.comics.com/comics/forbetter/index.html",
	"http://www.comics.com/comics/luann/index.html",
	"http://www.comics.com/comics/roseisrose/index.html",
	"http://www.cuteandfluffy.co.uk/",
	"http://www.djelibeybi.free-online.co.uk/pratchett/lost_ch.htm",
	"http://www.headhunter.net/JobSeeker/Jobs/JobDetails.asp?did=J26K66D0YJBB4DWPWJ&CiBookMark=1&strCrit=QID%3DA3844729227142%3Bst%+3Dq%3Buse%3DALL%3BrawWords%3Dsuper+hero%3BCID%3DUS%3BSID%3D%3F%3BTID%3D0%3BENR%3DNO%3BDTP%3DALL%3BYDI%3DYES%3BIND%3DAll%3BPDQ%3DAll%3BJN%3DAll%3BPAY%3DALL%3BPOY%3DNO%3BETD%3DALL%3BRE%3DALL%3BMGT%3DDC%3BSUP%3DDC%3BFRE%3D30%3BCHL%3DAL%3BQS%3Dhhr%5Fjobfindall%2Easp%3BSS%3DNO&ch=al",
	"http://www.heromachine.com/",
	"http://www.kew1.demon.co.uk/match/index.html",
	"http://www.lspace.org/books/pqf/alt-fan-pratchett.html",
	"http://www.mindspring.com/~alanh/life/",
	"http://www.mtholyoke.edu/adm/tour/",
	"http://www.rabbit.org/easter/index.html",
	"http://www.pbs.org/wgbh/amex/bomb/sfeature/mapablast.html",
	"http://www.sat.qc.ca/the_user/dotmatrix/en/intro.html",
	"http://www.sci.tamucc.edu/~pmichaud/toast/toast.html",
	"http://www.shady-acres.com/susan/squirrel.shtml",
	"http://www.shibumi.org/eoti.htm",
	"http://www.shockwave.com/bin/shockwave/content/content.jsp?id=dailyjigsaw",
	"http://www.slashdot.org/search.pl?topic=humor",
	"http://www.the-sisters-of-mercy.com/showcase/mp3/re_mp3.htm",
	"http://www.tuatha.org/~mpk/",
	"http://www.vgg.com/vgg/bond1.html",
	"http://www.wibble.org/PureWibble/",
	"http://www-csag.cs.uiuc.edu/individual/pakin/complaint",
	"http://www.aquarionics.com/");

function randomLink()
 { document.location.href = Links[Math.round(Math.random()*(Links.length-1))]; }

