// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================

var Tip=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!

Tip[0] = "<em>United States citizens do not require visas to visit Italy for less than 90 days. For planned stays of more than 90 days, a visa is required, and travelers should consult the nearest Italian Consulate.</em>";
Tip[1] = "<em>The best currency exchange rates can generally be obtained from ATM machines, which are found throughout Italy.  Look for Bancomat signs at banks.</em>";
Tip[2] = "<em>Obey posted speed limits, particularly in inhabited areas, as speed cameras have been installed in many locations.</em>";
Tip[3] = "<em>Utilities are costly in Italy.  Practice energy conservation at your rental, and turn off lights and unused appliances when leaving for the day.</em>";
Tip[4] = "<em>Upon arrival at the rental property, ask the person who greets you for the operating hours of local shops, particularly food stores and supermarkets.</em>";
Tip[5] = "<em>Heating season in Italy is from October 15 to April 15.  Usually heating fuel and fireplace wood, if used, are charged as an extra and paid locally.</em>";
Tip[6] = "<em>If you wish to access the Internet, it is helpful to have a local access number for your provider - - if there is one in Italy.</em>";
Tip[7] = "<em>Except for brief periods in the spring and fall, the time in Italy is six hours ahead of EST/EDT.</em>";
Tip[8] = "<em>When the person who greets you is showing you around the rental property, remember to ask for the location of the fuse box.</em>";
Tip[9] = "<em>It is most useful to have several copies of the data page of your passport when you travel abroad.  These should be kept separate from your passport.</em>";
Tip[10] = "<em>An International Driver&rsquo;s  Permit (IDP) is required to drive in Italy.  An IDP can be obtained from your nearest AAA office or even online.</em>";
Tip[11] = "<em>When driving into towns and cities, be careful not to enter zones of limited traffic, marked by signs with the letters ZTL. If you are staying at a hotel in a ZTL, make sure the hotel registers your entry with the local authorities.</em>";


// ======================================
// Do not change anything below this line
// ======================================
var Q = Tip.length;
var whichTip=Math.round(Math.random()*(Q-1));
function showTip(){document.write(Tip[whichTip]);}
showTip();