function change (obj) {
	var nazwa = obj.src.lastIndexOf ('/');
	nazwa = obj.src.substring (nazwa + 1, obj.src.length);
	var typ = nazwa.substring (nazwa.length - 7, nazwa.length - 4);
	if (typ == 'off') {
		obj.src = 'images/menu/' + nazwa.substring (0, nazwa.length - 7) + 'on.gif';
		if (!obj.className) {
			obj.style.paddingBottom="9px";
			obj.style.borderBottom="solid 4px #c5782c";
		}
	} else {
		obj.src = 'images/menu/' + nazwa.substring (0, nazwa.length - 6) + 'off.gif';
		if (obj.className) {
			obj.style.borderBottom="solid 4px #4d7e92";
		} else {
			obj.style.paddingBottom="13px";
			obj.style.borderBottom="0px";
		}
	}
}
