function grafika()
{
	if (!document.getElementsByTagName) return;
	var zdjecia = document.getElementById('katmain').getElementsByTagName("img");
	for(var i=0; i<zdjecia.length; i++) {
		var zdjecie = zdjecia[i];
		zdjecie.id = 'kat'+(i+1);
		zdjecie.onmouseover = function () { on(this.id); };
		zdjecie.onmouseout = function () { off(this.id); };
	}
}

function on(kat)
{
	document.getElementById(kat).src = document.getElementById(kat).src.replace('out','over');
}

function off(kat)
{
	document.getElementById(kat).src = document.getElementById(kat).src.replace('over','out');
}
window.onload = grafika;
