/* Citatfunktion */
/* Didvision Interactive 2007 */

var num_of_quotes = 4;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
body="&quot;Gotland is a land mass of Scandinavian perfection&quot;<br><em>The Observer (2006-02-19)</em>";
}

if (quotes==1) {
body="&quot;It's Sweden's favourite summer island&quot;<br><em>Condé Nast Traveller (June 2007)</em>'";
}

if (quotes==2) {
body="&quot;Fĺrö is the perfect place for reflection&quot;<br><em>Scanorama (February 2008)</em>'";
}

if (quotes==3) {
body="&quot;Gotland is a beautiful, richly historic island&quot;<br><em>Condé Nast Traveller, Travel Guide<br>www.cntraveller.com (2009-06-01)</em>";
}

document.write('<div align=left class=h1-start-text>');
document.write(''+ body +'');
document.write('</div>');



