//replace href with site urls, linktext with displayed text/flyover title - all in quotes
var sitepicks = new Array(
{href: "http://www.transdreams.eu" , linktext: "TransDreams"} ,
{href: "http://www.mrs-manita.com" , linktext: "Mistress Manita"} ,
{href: "http://www.fetbot.com" , linktext: "FetBot"} ,
{href: "http://www.janesguide.com" , linktext: "JanesGuide"} ,
{href: "http://www.gofetish.nl" , linktext: "Go Fetish Forum"}
);

var site, rnd, HTML = "", numOfSites = 5; //adjust
while (numOfSites--) {
rnd = Math.floor(Math.random() * sitepicks.length);
site = sitepicks[rnd];
HTML += '<p><a class="lhdr" target="_blank" href="' + site.href + '" title="' + site.linktext;
HTML += '">' + site.linktext + '</a></p>';
sitepicks.splice(rnd,1);
}
