var pic = 100;
var timeout = 0;
var txt = new Array(10);

txt[0] = '<font size="3" color="firebrick">The famous Austrian river <b>Koppentraun</b> - UNESCO World Nature Heritage in the Styrian Salzkammergut - <br><b>is in danger!</b></font><br><br> \
  <font size="2">A <b>power plant</b> with <b>drain</b> through a <b>5.3&nbsp;km</b>&nbsp;long and <b>1,8&nbsp;m</b>&nbsp;fat <b>Pipeline</b> will destroy the river Koppentraun!</Font>';
txt[1] = '<font size="3" color="green"><b>\
  <img class="smiley" src="./img/smiley-16-bk-gn.gif">&nbsp;natural river Koppentraun!<br>\
  <img class="smiley" src="./img/smiley-16-bk-gn.gif">&nbsp;UNESCO World Heritage!<br>\
  <img class="smiley" src="./img/smiley-16-bk-gn.gif">&nbsp;world famous flyfishing river!<br>\
  <img class="smiley" src="./img/smiley-16-bk-gn.gif">&nbsp;international paddle destination!<br>\
  <img class="smiley" src="./img/smiley-16-bk-gn.gif">&nbsp;awesome wilderness hiking trail!</b></font>';
txt[2] = '<font size="3" color="firebrick"><b>\
  <img class="smiley" src="./img/smiley-16-rd-ye.gif">&nbsp;drained river Koppentraun<br>\
  <img class="smiley" src="./img/smiley-16-rd-ye.gif">&nbsp;ignorance of UNESCO World Heritage<br>\
  <img class="smiley" src="./img/smiley-16-rd-ye.gif">&nbsp;short term profit<br>\
  <img class="smiley" src="./img/smiley-16-rd-ye.gif">&nbsp;stupid environment destruction<br>\
  <img class="smiley" src="./img/smiley-16-rd-ye.gif">&nbsp;loss in tourism</b></font>';
txt[3] = '<font size="2"><b>Styrian governor Mag. Franz Voves bevor 2005 election:</b><br>\
  <div style="text-align:justify"><font color="firebrick">\
  ... <b>i am against this project</b> ...</font><br>\
  <b>Since election governor Mag. Franz Voves seems to have forgotten the river Koppentraun...</b></div></font>';
txt[4] = '<font size="3" color="green"><b><img class="smiley" src="./img/smiley-16-bk-gn.gif">&nbsp;world famous flyfishing river!</b></font><br>\
  <div style="text-align:justify; margin-top:5px"><font size="3" color="darkgreen">\
  The river Koppentraun is a world famous flyfishing river and one of the <b>6 best trout rivers from Europe</b>.</font>';
txt[5] = '<font size="3" color="firebrick"><b><img class="smiley" src="./img/smiley-16-rd-ye.gif">&nbsp;Fishing flies or flyfishing?</b></font>';
txt[6] = '<font size="3" color="green"><b><img class="smiley" src="./img/smiley-16-bk-gn.gif">&nbsp;Awesome wilderness hiking trail!</b></font>';
txt[7] = '<font size="3" color="firebrick"><b><img class="smiley" src="./img/smiley-16-rd-ye.gif">&nbsp;Hiking at the pipline???</b></font>';
txt[8] = '<font size="3" color="green"><b><img class="smiley" src="./img/smiley-16-bk-gn.gif">&nbsp;International paddle destination!!!</b></font>';
txt[9] = '<font size="2"><font size="3" color="firebrick"><b><img class="smiley" src="./img/smiley-16-rd-ye.gif">&nbsp;Nordic Kayaking???</b></font>';

function show_pic() {
  document.getElementById("pic1").src = './img/page1/pic' + pic + '.jpg';
  document.getElementById("txt1").innerHTML = txt[ pic-100 ];
  if ( pic == 109 ) {
    pic = 100;
  }
  else {
    pic = pic + 1;
  }
}

function time_pic() {
  timeout = window.setTimeout( "time_pic()", 5000 );
  show_pic();
}

function init_pic() {
  timeout = window.setTimeout( "time_pic()", 5000 );
}

function click_pic() {
  window.clearTimeout( timeout );
  show_pic();
}

function blink1_pic() {
  document.getElementById("blink").src = './img/termin-ye-rd.gif' ;
  window.setTimeout( "blink2_pic()", 2000 );
}

function blink2_pic() {
  document.getElementById("blink").src= './img/termin-rd-ye.gif';
  window.setTimeout( "blink1_pic()", 2000 );
}

