// Copyright by Hubert Frey
function gid(id){
	return document.getElementById(id);
}

function randomLogo(){
	// vybereme nahodne cislo od 0 do 18 (19 log)
	//index = Math.floor(Math.random() * 18);
	if (++index > 18)
	{
		index = 0;
	}

	// nastavime posun pozadi se sadou log
	gid('logotyp').style.backgroundPosition = 'center ' + -(index*45) + 'px'; // 45 je vyska jednoho loga
}
var index = 15;
window.onload = function(){
	if(document.all){
        gid('logotyp').attachEvent('onmouseover', randomLogo);
	} else {
        gid('logotyp').addEventListener('mouseover', randomLogo, true);
	}
}