var urls = new Array(
"www.TheRedRoseSociety.org",
"www.Name-a-Rose.com",
"www.InterRose.co.uk",
"www.InterHamper.co.uk",
"www.VirtualRoses.co.uk",
"www.InterDiamond.biz",
"www.InterFlorist.biz",
"www.Rosarian.info",
"www.InterPetal.com",
"www.ARedRose.co.uk",
"www.RNRS.org",
"www.InterBalloon.com",
"www.TheRockmanticGodsariansofLove.com",
"www.AThingCalledLove.org",
"www.ErosDay.com"
);

var descriptions = new Array(
"We Believe in a thing called Love!",
"Watch it grow forever in our Rose Gardens!",
"The Internet's Florist of Choice!",
"Over 70 delicious Hampers to choose from!",
"Free Virtual Roses available 24/7!",
"Say it with a Sparkle - Coming Soon!",
"Say it with Flowers Worldwide!",
"All our favourite Links - Coming Soon!",
"Freeze Dried Rose Petals &amp; much more!",
"Say it with the most romantic flower in the world!",
"Join the Royal National Rose Society Today!",
"Ballooooooooooooooooooooon in a Box Delivery!",
"The Blooming Gods of Rock and Roll!",
"Do you Belive in it?",
"The hottest most romantic day of the Year?"
);

var urlindex = 0;
var paused = false;

function change_urls()
{
	if (!paused) {
		writeout("urltext", "<A HREF='http://" + urls[urlindex] + "'>" + urls[urlindex] + "</A>");
		writeout("descriptiontext", descriptions[urlindex]);
		if (urlindex == urls.length - 1) {
			urlindex = 0;
		} else {
			urlindex++;
		}
	}
	setTimeout("change_urls()",2500);
}

function pause()
{
	paused = true;
}

function resume()
{
	paused = false;
}
