<!--
/*
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]="musicfilm.html"
randomlinks[1]="homies.html"
randomlinks[2]="lightbulb.html"
randomlinks[3]="pin.html"
randomlinks[4]="mallet.html"
randomlinks[5]="rumors.html"
randomlinks[6]="hermitage.html"
randomlinks[6]="slideshow01.html"

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