var linkArray = new Array (new Array ("Sandy", "http://www.santheo.com"),
new Array ("Matt", "http://mattfurr.blogspot.com"),
new Array ("Ben", "http://www.benhuh.com"),
new Array ("Mikal", "http://www.belicove.com"),
new Array ("Jim and Levi", "http://www.baseballrelated.com"),
new Array ("Dave", "http://www.greasyskillet.org"),
new Array ("Sarah", "http://www.sarahhatter.com/things"),
new Array ("Seth", "http://www.seth-meyer.com"),
new Array ("the gang", "http://www.nacho.org"),
new Array ("Ellen", "http://ebu-gogo.blogspot.com/"),
new Array ("Ellen", "http://ebu-gogo.blogspot.com/"),
new Array ("Ellen", "http://ebu-gogo.blogspot.com/"),
new Array ("Ellen", "http://ebu-gogo.blogspot.com/"),
new Array ("Ellen", "http://ebu-gogo.blogspot.com/"),
new Array ("Ellen", "http://ebu-gogo.blogspot.com/"),
new Array ("Ellen", "http://ebu-gogo.blogspot.com/"),
new Array ("Ellen", "http://ebu-gogo.blogspot.com/"),
new Array ("Malcolm", "http://www.seemann.com/malcolm"),
new Array ("Malcolm", "http://www.seemann.com/malcolm"),
new Array ("Danae", "http://lifeingreece.blogspot.com/"),
new Array ("Danae", "http://lifeingreece.blogspot.com/"),
new Array ("Danae", "http://lifeingreece.blogspot.com/"),
new Array ("Greg", "http://www.eod.com"),
new Array ("Greg", "http://www.eod.com/blog"),
new Array ("Ben", "http://www.bentimberlake.com"),
new Array ("Tim", "http://www.super-rookie.com/main"),
new Array ("Tim", "http://www.super-rookie.com/main"),
new Array ("Saul", "http://www.saulraisin.com/sitemain"),
new Array ("Jeff", "http://hongblg.blogspot.com"),
new Array ("Michael", "http://sippey.typepad.com/filtered/"),
new Array ("Matthew", "http://www.defectiveyeti.com"),
new Array ("Levi", "http://ivebeenreadinglately.blogspot.com"),
new Array ("Levi", "http://ivebeenreadinglately.blogspot.com"),
new Array ("Levi", "http://ivebeenreadinglately.blogspot.com"),
new Array ("Levi", "http://ivebeenreadinglately.blogspot.com"),
new Array ("Levi", "http://ivebeenreadinglately.blogspot.com"),
new Array ("Heather", "http://www.rabbitblog.com"),
new Array ("Maggie", "http://www.mightygirl.net"),
new Array ("Ted", "http://www.introvert.net/blog/"),
new Array ("Sandy and Sarah", "http://www.santheo.com/home"),
new Array ("Mandy", "http://bloggymcblogalot.blogspot.com"),
new Array ("Jim", "http://ellwanger.tv/blog/"),
new Array ("Naz", "http://absenter.org"),
new Array ("Payton", "http://www.westnorth.com"),
new Array ("Ted", "http://www.introvert.net/blog/"),
new Array ("Neal", "http://www.nealpollack.com"),
new Array ("Matt", "http://a.wholelottanothing.org"),
new Array ("Bob and Gigi", "http://www.bobwillems.com/cycling/"),
new Array ("Smithers", "http://smithersmpls.com/"),
new Array ("Rhodes", "http://www.beachwoodreporter.com/"),
new Array ("Bob", "http://www.mightybob.com/"),
new Array ("Bob", "http://www.mightybob.com/"),
new Array ("Bob", "http://www.mightybob.com/"),
new Array ("Mimi", "http://smartypants.diaryland.com/"),
	new Array (2 ) // a filler, so we don't have to worry about removing the comma at the end of the last entry.
);

rnd.today=new Date();
rnd.seed=rnd.today.getTime();

function rnd() {
        rnd.seed = (rnd.seed*9301+49297) % 233280;
        return rnd.seed/(233280.0);
};

function rand(number) {
        return Math.ceil(rnd()*number);
};

totalLinks = linkArray.length - 1;
var randNum = rand (totalLinks) - 1;

thisLinkArray = linkArray[randNum];

var linkName = thisLinkArray[0];
var linkURL = thisLinkArray[1];
document.write("\<a href=\"" + linkURL + "\">" +linkName + "\</a>");

