// JavaScript Document

 jQuery.noConflict();
/* jQuery(document).ready(function(){
 	jQuery('ul#SpecialsList').innerfade({animationtype: 'fade', speed: 'normal', timeout: 5000, type: 'sequence', runningclass:'innerfade'});
 });
 allImagesLoaded = false; var aIL;

 window.onload=function()
 {
	jQuery("div#img_left").append("<img src=\"/bilder/buehne/links2.jpg\" width=\"530\" height=\"0\" alt=\"\" style=\"display:none;\" />");
	jQuery("div#img_left").append("<img src=\"/bilder/buehne/links3.jpg\" width=\"530\" height=\"0\" alt=\"\" style=\"display:none;\" />");
	
	jQuery("div#img_center").append("<img src=\"/bilder/buehne/rechts12.jpg\" width=\"230\" height=\"0\" alt=\"\" style=\"display:none;\" />");
	jQuery("div#img_center").append("<img src=\"/bilder/buehne/rechts13.jpg\" width=\"230\" height=\"0\" alt=\"\" style=\"display:none;\" />");
	
	jQuery("div#img_right").append("<img src=\"/bilder/buehne/rechts22.jpg\" width=\"230\" height=\"0\" alt=\"\" style=\"display:none;\" />");
	jQuery("div#img_right").append("<img src=\"/bilder/buehne/rechts23.jpg\" width=\"230\" height=\"0\" alt=\"\" style=\"display:none;\" />");
	aIL = window.setInterval("checkImagesLoaded()", 1000);
 };
 
 function checkImagesLoaded() 
 {
	if (allImagesLoaded) 
	{
		animateImg();
		window.clearInterval(aIL);
		return;
	}
	allImagesLoaded = true;
	jQuery("#img_left > img,#img_center > img,#img_right > img").each(function() {
		if(!this.complete) {allImagesLoaded=false;}
	});		
 }

 function animateImg() {
	window.setTimeout("jQuery('div#img_right').innerfade({ animationtype: 'fade', speed: 'slow', timeout: 5000, type: 'sequence', containerheight: '310px', runningclass:'innerfade'});", 100);
	window.setTimeout("jQuery('div#img_center').innerfade({animationtype: 'fade', speed: 'slow', timeout: 5000, type: 'sequence', containerheight: '310px', runningclass:'innerfade'});", 1100);
	window.setTimeout("jQuery('div#img_left').innerfade({  animationtype: 'fade', speed: 'slow', timeout: 5000, type: 'sequence', containerheight: '310px', runningclass:'innerfade'});", 2100);
 }
*/
 function MoreContent() 
 {
	var plusButton = '/bilder/global/auf.gif';
	var minButton  = '/bilder/global/zu.gif';
	
	$('ShowPicture').style.display   = $('ShowPicture').style.display == 'block'?'none':'block';
  /*$('Show_Picture').style.display = $('Show_Picture').style.display == 'block'?'none':'block';*/
		
	$('content_more').src = ( $('ShowPicture').style.display == 'none' ) ? plusButton : minButton;
 }

 function HideContent() 
 {
	document.getElementById('ShowPicture').style.display   = 'none';
  /*document.getElementById('Show_Picture').style.display = 'none';*/
 }
