var Quotation=new Array() // do not change this!

// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!

Quotation[0] = "Tenerife was once three islands later joined in the middle by the rise of Mt. Teide";
Quotation[1] = "Every year Tenerife hosts one of the three biggest carnivals in the world.";
Quotation[2] = "Mt. Teide is Spain's highest peak at more than 3.7 km above sea-level.";
Quotation[3] = "The south-west of Tenerife has had more sunshine days in the last ten years than any other place in Europe.";
Quotation[4] = "Tenerife, with Spain's highest peak, goes deeper under the water than it rises above.";
Quotation[5] = "Parts of Tenerife were formed over 20,000,000 years ago.";
Quotation[6] = "Tenerife is home to one of the biggest telescopes in the world.";
Quotation[7] = "Tenerife's La Laguna is a UNESCO World Heritage Site after influencing architecture throughout South America.";
Quotation[8] = "Tenerife is just a tip on an Atlantic ridge also incorporating The Azores and the Cape Verde Islands.";
Quotation[9] = "There is no better company to help you set up home in Tenerife than Property Alliance.";
Quotation[10] = "There is no such thing as the <b style=\"color: #CC0000;\">best property</b> but there is the best property <b>for you</b> we are the <b style=\"color: #CC0000;\">best people</b> to find it";


// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write("" + Quotation[whichQuotation]);}
showQuotation();

