
var randomlink = new Array
(
"http://www.worldbeardchampionships.com/european-beard-clubs",
"http://www.theadventurists.com/the-adventures/mongol-rally",
"http://www.amazon.co.uk/Why-Not-Insects-Vincent-Holt/dp/0946014124/ref=pd_sim_b_2",
"http://en.wikipedia.org/wiki/Squirrel_fishing",
"http://library.thinkquest.org/TQ0312360",
"http://www.lbvcr.com",
"http://www.towerrunning.com/english/races.htm",
"http://www.wmmr.com/shows/preston-and-steve/blogentry.aspx?BlogEntryID=10212384",
"http://www.grown-furniture.co.uk/examples.html",
"http://theeggshellsculptor.com/Classes.html",
"http://reubenjamesbrown.tumblr.com/",
"http://www.erminestreetguard.co.uk/"
);

function picklink()
{
 var linkselect = Math.floor(Math.random() * randomlink.length);
 return (randomlink[linkselect]);
}

