images = new Array("01","02","03","04","05");
titles = new Array("Willkommen bei SHC","Modernste HighTech-Produkte","Ein geraumiges Lager","Stets motivierte Mitarbeiter","Wir wissen zu uberzeugen");
texts = new Array("Ihrem Spezialisten fuer Relais und Steckverbinder","Unsere Produke sind stets auf dem neusten Stand","In unserem Lager haben wir viel Platz fuer Produkte","Lassen Sie sich von uns kompetent beraten","Vereinbaren Sie noch heute einen Termin!");
animation = 0;

function splash(id,ani){
	document.getElementById('splash').style.background = "url(http://shdevs.com/images/splashs/"+images[id]+".jpg)";
	document.getElementById('splashTitle').innerHTML = titles[id];
	document.getElementById('splashText').innerHTML = texts[id];
	
	for(var i=0;i < images.length;++i)
		if(i != id) document.getElementById('button'+i).className = '';
	document.getElementById('button'+id).className = 'active';
	if(ani != true) animation = -1;
}

function animate(){
	if(animation >= 0){
		//animation = images[animation+1] ? animation + 1 : 0;
		animation = Math.floor(Math.random()*images.length);
		splash(animation,true);
		setTimeout('animate()',10000);
	}
}

function preload(){
	img = new Image();
	for(var i=0;i < images.length;++i)
  	img.src = "http://shdevs.com/images/splashs/"+images[i]+".jpg";
}

function init(){
	if(document.getElementById('splash') == null)
		setTimeout('init()',10);
	else
		animate();
}

init();