
var theImages = new Array()

theImages[0] = '/gfx/Banner_info_handla_idag2.gif'
theImages[1] = '/gfx/Banner_info_kunskap.gif'
theImages[2] = '/gfx/Banner_info_leverans.gif'
theImages[3] = '/gfx/Banner_info_varumarken.gif'
theImages[4] = '/gfx/Banner_info_handla_idag2.gif'
theImages[5] = '/gfx/Banner_info_kunskap.gif'

  //specify corresponding links below
  var imagelinks=new Array()
  imagelinks[0]="/Finansiering/"
  imagelinks[1]="/Om_Alvsby_El/?id=personal"
  imagelinks[2]="/Tjanster/?id=installation"
  imagelinks[3]="/Leverantorer/"
  imagelinks[4]="/Finansiering/"
  imagelinks[5]="/Om_Alvsby_El/?id=personal"

// do not edit 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('<a href='+'"'+imagelinks[whichImage]+'"'+'><img src="'+theImages[whichImage]+'" border=0></a>');
}

var theBanners = new Array()

theBanners[0] = 'gfx/banner1.jpg'
theBanners[1] = 'gfx/banner2.jpg'
theBanners[2] = 'gfx/banner3.jpg'
theBanners[3] = 'gfx/banner4.jpg'
theBanners[4] = 'gfx/banner5.jpg'
theBanners[5] = 'gfx/banner6.jpg'

// do not edit anything below this line

var j = 0
var p = theBanners.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Banner()
   preBuffer[i].src = theBanners[i]
}
var whichBanner = Math.round(Math.random()*(p-1));
function showBanner(){
document.write('<img src="'+theBanners[whichImage]+'" border=0 alt="'+theBanners[whichBanner]+'">');
}
