var songs = new Array();

/* Begin songlijst */
songs.push("barbie.html");
songs.push("beechcraft.html");
songs.push("casinodamour.html");
songs.push("cleaning.html");
songs.push("elevette.html");
songs.push("falseteeth.html");
songs.push("fanal.html");
songs.push("finestchina.html");
songs.push("fireman.html");
songs.push("garden.html");
songs.push("happyend.html");
songs.push("hearingaids.html");
songs.push("kidnapyourwife.html");
songs.push("kneedeep.html");
songs.push("lawnmotoring.html");
songs.push("leadfuzz.html");
songs.push("mdevivo.html");
songs.push("missb.html");
songs.push("misyunifurs.html");
songs.push("newportjazz.html");
songs.push("newrainbow.html");
songs.push("novascotia.html");
songs.push("onthebuilding.html");
songs.push("ownthesun.html");
songs.push("paintyourself.html");
songs.push("sexualsea.html");
songs.push("swans.html");
songs.push("thesleeper.html");
songs.push("torturedmoons.html");
songs.push("wausaustory.html");
songs.push("whitedot.html");
songs.push("winnebago.html");
songs.push("hallenbad.html");
songs.push("kurhaus.html");

/* Einde songlijst */

function getSong()
{
  var i = Math.floor((Math.random() * songs.length));
  location.href = '/songs/' + songs[i];
}