// St&aring;ende text, menyn
function MenyCode(){
document.write('<a href="./index.html">STARTSIDA</a> | ');
document.write('<a href="./mat.html">MENY</a> | ');
document.write('<a href="./program.html">PROGRAM</a> | ');
document.write('<a href="./bilder.html">BILDER</a> | ');
document.write('<a href="./omoss.html">OM OSS</a> | ');
document.write('<a href="./aktiviteter.html">OM STORA R&Ouml;R</a>');
}

// St&aring;ende text, om
function Kontaktrub(){
document.write('<b class="rubrik">V&auml;lkommen till oss!</b>');
}
function Kontakttext(){
document.write('Du hittar oss i hamnen, Stora R&ouml;r.<br>Tel: 0485-56 53 55<br>Restaurang.<br>Kiosk med glass, tobak och godis...<br><br>E-post: <a href="mailto:andersoanna@telia.com">andersoanna@telia.com</a>');
document.write('<hr>');
}

// St&aring;ende text0

function V_TEXT_0_RUBR(){
document.write('');
}
function V_TEXT_0_TEXT(){
document.write('<a href="http://www.facebook.com/pages/Stora-Rör-Hamnkafé-Öland/183654801658201" target="_blank"><img src="./gfx/Facebook.jpg"></a><br>');
document.write('<a href="http://www.klart.se/v&auml;der-stora-r&ouml;r.html" target="_blank"><img src="./gfx/bild02.jpg"></a><br>');
document.write('<img src="./gfx/bild03.jpg"><br>');
document.write('<img src="./gfx/bild08.jpg"><br>');
document.write('<a href="http://www.forsgrenfyr.se" target="_blank"><img src="./gfx/bild04.jpg"></a><br>');
document.write('<a href="http://www.hagelstad.se" target="_blank"><img src="./gfx/bild05.jpg"></a><br>');
document.write('<a href="http://www.copperhouse.se/" target="_blank"><img src="./gfx/bild09.jpg"></a><br>');
document.write('<a href="http://www.bikeisland.se/index.php?option=com_content&view=article&id=142&Itemid=122" target="_blank"><img src="./gfx/bild06.jpg"></a><br>');

}


function V_TEXT_1_RUBR(){
document.write('');
}
function V_TEXT_1_TEXT(){
document.write('');
document.write('');
}


function V_TEXT_2_RUBR(){
document.write('');
}
function V_TEXT_2_TEXT(){
document.write('');
document.write('');
}


function V_TEXT_3_RUBR(){
document.write('');
}
function V_TEXT_3_TEXT(){
document.write('');
document.write('');
}


// St&aring;ende text4
function V_TEXT_4_RUBR(){
document.write('');
}
function V_TEXT_4_TEXT(){
document.write('');
document.write('');
}


// Text 5
function V_TEXT_5_RUBR(){
document.write('');
}
function V_TEXT_5_TEXT(){
document.write('');
document.write('');
}


// Staring;ende text6
function V_TEXT_6_RUBR(){
document.write('');
}
function V_TEXT_6_TEXT(){
document.write('');
document.write('');
}

// St&aring;ende text7
function V_TEXT_7_RUBR(){
document.write('');
}
function V_TEXT_7_TEXT(){
document.write('');
document.write('');
}


// St&aring;ende text8
function V_TEXT_8_RUBR(){
document.write('');
}
function V_TEXT_8_TEXT(){
document.write('');
document.write('');
}


// St&aring;ende text9
function V_TEXT_9_RUBR(){
document.write('');
}
function V_TEXT_9_TEXT(){
document.write('');
document.write('');
}


<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Original:  jsCode.com -->
<!-- Web Site:  http://jscode.com -->

// ==============================================
// Copyright 2003 by jsCode.com
// Source: jsCode.com
// Author: etLux
// Free for all; but please leave in the header.
// ==============================================

// Set up the image files to be used.
var theImages = new Array() // do not change this
// To add more image files, continue with the
// pattern below, adding to the array. Rememeber
// to increment the theImages[x] index!

theImages[0] = './gfx/001.jpg'
theImages[1] = './gfx/002.jpg'
theImages[2] = './gfx/003.jpg'
theImages[3] = './gfx/004.jpg'
theImages[4] = './gfx/005.jpg'
theImages[5] = './gfx/006.jpg'
theImages[6] = './gfx/007.jpg'
theImages[7] = './gfx/008.jpg'
theImages[8] = './gfx/009.jpg'
theImages[9] = './gfx/010.jpg'

// ======================================
// do not change anything below this line
// ======================================

var j = 0
var p = theImages.length;

var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}

var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+theImages[whichImage]+'">');
}
