function init() {
	randomizeImage();
}

function randomizeImage() {
    var randomImage = document.getElementById('randomImage');
    if(randomImage) {
         var bild=new Array("motiv-1.jpg",
                       "motiv-2.jpg",
                       "motiv-3.jpg",
                       "motiv-4.jpg",
                       "motiv-5.jpg",
                       "motiv-6.jpg",
                       "motiv-7.jpg",
                       "motiv-8.jpg",
                       "motiv-9.jpg",
                       "motiv-10.jpg",
                       "motiv-11.jpg",
                       "motiv-12.jpg");
        bildlen=bild.length;
        var zufall = Math.floor((bildlen)*Math.random());
        randomImage.src = "../Bilder/" + bild[zufall];
    }
}

function resize_iframe(frameElement) {
	if(frameElement) {
		
		var the_height = frameElement.contentWindow.document.body.scrollHeight;
		frameElement.height = the_height;
	  	
	  	var the_width = frameElement.contentWindow.document.body.scrollWidth;
	  	frameElement.width = the_width;
	}
}

aktiv='neutral';
function zeige(ID) {
	document.getElementById(ID).style.display="block";    
	document.getElementById(aktiv).style.display = "none";
	aktiv=ID;
}
