// 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 Hong Kong but must have a current passport with more than 6 months validity..."
text[number++] = "<b>Currency</b><br> Hong Kong Dollar..."
text[number++] = "<b>Taxes</b><br> Travellers departing from Australia may pay the Australian Passenger Movement Charge (airport tax) and Hong Kong Departure Tax when paying for their booking..."
text[number++] = "<b>Tipping</b><br> Hotel and restaurants automatically add a service fee to your bill, personal tipping is not compulsory (at your own discretion)..."
text[number++] = "<b>Clothing</b><br> Hong Kong experiences all four seasons. Summer is from April to September where light clothing is recommended. Winter is from October to March and heavier clothing is advised..."
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]);
