// JavaScript Document
function random_text()
{};
var random_text = new random_text();

// Set the number of text strings to zero to start
var number = 0;

// Incremental list of all possible Text
	random_text[number++] = "The most popular rose giving holidays are Valentine’s Day, Mother’s Day and Christmas."
	random_text[number++] = "Roses prefer a full day of sun.  Morning sun is especially important because it dries the leaves which helps prevent disease"
	random_text[number++] = "Roses get all their food either through their leaves (foliar feeding) or through their roots. The only medium for transporting food is water."
	random_text[number++] = "Though highly sought after, no blue or black roses exist yet. Some roses are advertised as blue or black, but they are actually lavender or another deep colour. Most lavender roses are difficult to grow and are quite susceptible to disease. The genetics are not available for producing a true blue or black colour in roses. It will probably be necessary to use gene splicing to produce the first blue and black roses."
	random_text[number++] = "Roses need good drainage and do not like to have &quot;wet feet.&quot;"
	random_text[number++] = "In the 19th century old scented roses were used to make jelly."
	random_text[number++] = "Cleopatra covered the floors of her palace with a thick layer of rose petals every day. The mattresses and pillows of her bed were stuffed with rose petals."
	random_text[number++] = "The Canadian Government has sponsored a rose hybridizing program that has developed hardy varieties. The 'Explorer' series is one of these."
	random_text[number++] = "Many modern roses are now highly fragrant and disease resistant as well."
	random_text[number++] = "The City of Vancouver’s flower is the Rose."
	random_text[number++] = "Stanley Park is Canada's largest city park with 404 hectares. Described by one local writer as a 'thousand-acre therapeutic couch', it began as a military reserve in the mid-1800s to guard the entrance to Vancouver harbour from aggressive Americans."
	random_text[number++] = "In 1909, the City of New York presented Vancouver with a gift of eight pairs of grey squirrels for Stanley Park. Now the park is riddled with the critters, who are favourites of city residents and visitors alike."
	random_text[number++] = "Stanley Park Seawall: On any given day, at just about any given hour, you can run, walk blade or cycle Stanley Park's seawall."
	random_text[number++] = "Vancouver's Chinatown is the third largest in North America after the Chinese communities in San Francisco and New York."
	random_text[number++] = "Vancouver has the largest port in Canada and the largest on North America's West Coast. Trivia: a hundred years ago it was so quiet on Burrard Inlet you could holler across the water to fetch a ferry to take you across. The ferry was a rowboat."
	random_text[number++] = "There are two spectacular mountain peaks overlooking Vancouver's harbour. They resemble the ears of a lion. They were named as a remembrance of statues of two lions in London's Trafalgar Square."
	random_text[number++] = "Lions Gate Bridge: The Guinness Brewing Company built this huge bridge, which spans the First Narrows entrance to Vancouver's wide harbour and Burrard Inlet, from Stanley Park to West Vancouver. It bought a lot of property on the north shore of the inlet, now the cities of West Vancouver and North Vancouver, and then built the bridge at its own expense to give people a reason to buy the land. The BC government bought the bridge from Guinness years ago. In 1986, the Guinness family donated money to decoratively light the bridge in the evenings. The name comes from the fact that one can see The Lions from the bridge."
	
	
var random_number = Math.floor(Math.random() * number);

// Write out the random text to the browser
document.write(random_text[random_number]);