var urls = new Array(
"www.Name-a-Rose.com",
"www.VirtualRoses.co.uk",
"www.IrishRoses4U.com",
"www.WinaRose.co.uk",
"www.ILoveRoses.co.uk",
"www.Rosarian.info",
"www.InterBloom.co.uk",
"www.aredrose.co.uk",
"www.InterPetal.com",
"www.InterRose.co.uk",
"www.TheRoseShop.co.uk",
"www.RNRS.org",
"www.InterBalloon.com",
"www.TheRockmanticGodsariansofLove.com"
);

var descriptions = new Array(
"Name your very own Rose Today!",
"Virtual Roses Worldwide!",
"Sending Freeze Dried Roses Worldwide!",
"Win a Rose and much more!",
"If you love roses, you will love this!",
"Come visit our Rose Garden!",
"Say it with Blooming Nice Flowers.",
"The most romantic flower in the world!",
"Say it with Rose Petals and more!",
"Fresh Roses & Fresh Prices!",
"At last a shop dedicated to roses!",
"We support the Royal National Rose Society!",
"All the Balloon in a Box you will ever need!",
"The Blooming Gods of Rock and Roll!"
);


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;
}