var urls = new Array(
"www.TRRS.org",
"www.InterRose.co.uk",
"www.InterBalloon.com",
"www.InterPetal.com",
"www.InterHamper.co.uk",
"www.InterMistletoe.co.uk",
"blog.TRRS.org",
"competition.TRRS.org",
"facebook.TRRS.org",
"twitter.TRRS.org",
"www.Name-a-Rose.com",
"www.TheRedRoseFlorist.co.uk",
"www.VirtualRoses.co.uk",
"www.InterChocolate.com",
"www.RNRS.org"
);

var descriptions = new Array(
"The Home of the Perfect Gift",                                 // TRRS
"The Internet's Florist of Choice &amp; Rose Delivery Experts", // IR
"Say it with a Helium Filled Ballooooooooooon in a Box",        // IN
"Freeze Dried Rose Petals &amp; much more",                     // IP
"Tonnes of Delicious Hampers to choose from",                   // IH
"Say it with Mistletoe, Holly and Christmas Door Wreaths!",     // IM
"Get the latest News, Special Offers and Discount Codes",       // Blog
"The Hottest, most Romantic Competition ever!",                 // Competition
"Like us on Facebook",                                          // fb
"Follow all our Twitterings",				                            // twitter
"Name a Rose Today and plant it in our Virtual Rose Garden",	  // NAR
"The Best Florist in Lowestoft",                                // TRRF
"Send your loved one a FREE Virtual Rose",      		      	    // VR
"Say it with Luxurious Chocolates",                             // IC
"We support the Royal National Rose Society!"                   // RNRS
);

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;
}
