<!--
/*
Random link button- By JavaScript Kit (http://javascriptkit.com)
Over 300+ free scripts!
This credit MUST stay intact for use
*/

//specify random links below. You can have as many as you want

var randomlinks=new Array()

randomlinks[0]="http://getactive.peta.org/campaign/dancing_bears"
randomlinks[1]="http://www.glumbert.com/media/dwarfparty "
randomlinks[2]="http://www.rockbitch.tv/home.html"
randomlinks[3]="http://freaks.monstrous.com/freak_show.htm "
randomlinks[4]="http://phreeque.tripod.com/"


function randomlink(){
window.location=randomlinks[Math.floor(Math.random()*randomlinks.length)]
}
//-->
