function cachedGebid(id){
    var res = elementCache[id]
    if (res === void 0)
        res = elementCache[id] = document.getElementById(id)
    return res
}
var elementCache = {}


function show_one_hide_others(id_prefix,show_num,first,last) {
	for(i=first;i<=last;i++) {
		var elem = cachedGebid(id_prefix + i);
		if (elem != null) {
			if(i==show_num) {
				elem.style.display='block';
			} else {
				elem.style.display='none'
			}
		}
	}
}

function zakladka(num) {
	show_one_hide_others("dscr_",num,0,7);
	for(i=0;i<=7;i++) {
		link_id = 'feat_link_' + i;
		link = document.getElementById(link_id);
		if (link != null) {
			if (i==num) {
				link.className = 'act';
			} else {
				link.className = '';
			}
		}
	}
	// tresc do gory
	document.getElementById('lyr1').style.top = "0px";
	// pasek nawigacyjny - do gory
	document.getElementById('dragBar').style.top = "1px";

    initScrollLayer();
}

