// 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 Singapore but must have a current passport with more than 6 months validity..."
text[number++] = "<b>Currency</b><br> Singapore Dollar..."
text[number++] = "<b>Taxes</b><br> Travellers departing from Australia and Singapore may pay additional taxes when paying for their booking - check with your travel agent..."
text[number++] = "<b>Tipping</b><br> Hotels and restaurants automatically add a service fee to your bill but personal tipping is not compulsory (at your own discretion)..."
text[number++] = "<b>Clothing</b><br> Light and casual clothing is recommended..."
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]);
