/* (C)2011 EUC Online Service GmbH */
/* All Rights Reserved. */
/* This code ist not freeware. You might not copy it whithout any permission. /*
/* 20110715 - 20111227 */


var fsbasedir = '/sites/default/files/upl/fotostrecke/euc';
var fs = new Array();
fs[0] = '';
fs[1] = '11gutegruende_foto';
fs[2] = 'node/127';
fs[3] = 'informieren.html';
fs[4] = 'koelschfeiern.html';
fs[5] = 'bier2';

function autorun(status) {
  if (status == 1) {
    mode = 1;
    t=setTimeout('step(1)',timer);
  } else {
    mode = 0;
    clearTimeout(t);
  };
};

function step(d) {
  if (d > 0) {
    if (cur < n) { cur++; } else { cur=0 }
    if (mode == 1) { t=setTimeout('step(1)',timer); }
  } else {
    if (cur > 0) { cur--; } else { cur=n; }
  };
  document.imgmain.src=path+'/'+img[cur];
  // alert('n='+n+'; cur='+cur);
};

function fsstep(cur,d) {
  fscur = cur;
  if (d > 0) {
    if (fscur < fsn) { fscur++; } else { fscur=0 }
  } else {
    if (fscur > 0) { fscur--; } else { fscur=n; }
  };
  window.location.href = '/' + fs[fscur];
};

var cur = 0;
var img = new Array();
var t;
var timer = 2000;
var mode = 0;
var fsn = 5;
var fscur;


