// JavaScript Document

function text() {
};

text = new text();
number = 0;

// textArray
text[number++] = "<b>Passport/Visa Requirements</b><br> Australian citizens do not require a visa to visit Sri Lanka but must have a current passport with more than 6 months validity. Australian citizens require a visa to visit India. Please consult with your travel agent at time of booking..."
text[number++] = "<b>Currency</b><br> The currency in Sri Lanka is the Sri Lankan Rupee. The currency in Kerala is the Indian Rupee..."
text[number++] = "<b>Taxes</b><br> Travellers departing from Australia must pay additional taxes when paying for their booking - check with your travel agent. Departure tax is also required before departing from Sri Lanka and India and is paid locally at the airport..."
text[number++] = "<b>Clothing</b><br> Light casual clothing is recommended. Neat and modest dress is advisable when visiting
temples..."
text[number++] = "<b>Insurance</b><br> Travel insurance is highly recommended and can be obtained through your travel agent before you depart..."
text[number++] = "<b>Health</b><br> Please see your doctor regarding health requirements and vaccinations before you depart..."
// keep adding items here...

increment = Math.floor(Math.random() * number);

document.write(text[increment]);
