// globals
var ani = null;

//------------------------------------------------------------------
// init
function init() {
	ani = new preload("img/cnt/elefantZahnTuer.gif");
}

//------------------------------------------------------------------
// highlight
function preload(img1) {
	this.startAni = new Image();
	this.startAni.src = img1;
}

//------------------------------------------------------------------
// startAmi
function startAnimation() {
	document.getElementById("elefant").src = ani.startAni.src;
}
