<!-- 
/************************************************
 eShop Javascript library for Slideshows
 (c) 1999-2009, HIBIKE GmbH, Hofheim
 ************************************************/

function hbss_imageChange() {
  var list = $('slideshow');
  document.mainimage.src = list.options[list.selectedIndex].value;
}

function hbss_imagePrev() {
  var list = $('slideshow');
  if(list.selectedIndex == 0) {
    list.selectedIndex = list.options.length-1;
  }
  else {
    list.selectedIndex--;
  }
  hbss_imageChange();
}

function hbss_imageNext() {
  var list = $('slideshow');
  if(list.selectedIndex == list.options.length-1) {
    list.selectedIndex = 0;
  }
  else {
    list.selectedIndex++;
  }
  hbss_imageChange();
}

-->