// Steuerung Flash-Movie

var movieName = "slideshow";
var movieState = 1;

function thisMovie(movieName) {
  if (navigator.appName.indexOf ("Microsoft") !=-1) {
    return window[movieName];
  } else {
    return document[movieName];
  }
}

function changestate() {
	bildneu     = new Image();
	bildneu.src = document.images["steuerung"].src;
	switch (movieState) {
	case 1:
		document.images["steuerung"].src = "graphic/start.jpg";
		thisMovie(movieName).StopPlay();
		movieState = 0;
		break;
	case 0:
		document.images["steuerung"].src = "graphic/stop.jpg";
		thisMovie(movieName).Play();
		movieState = 1;
		break;
	}
}

// Klickrahmen weg
document.links.onClick=blur();
window.focus();
