var nazwyObrazkow = new Array('ofirmie','oferta','nazdrowie','sezon','kontakt');
var obr = new Array();
for(x=0; x<nazwyObrazkow.length; x++){
obr[nazwyObrazkow[x]+'0']=new Image()
obr[nazwyObrazkow[x]+'0'].src='img/G_'+nazwyObrazkow[x]+'1.jpg'
obr[nazwyObrazkow[x]+'1']=new Image()
obr[nazwyObrazkow[x]+'1'].src='img/G_'+nazwyObrazkow[x]+'2.jpg'
}

function zmienObr(obiekt,obrazek){
obiekt.src=obr[obrazek].src
}

function showSubNav(thisitem) {
	var divname = "subnav"+thisitem;
	var thediv = document.getElementById(divname);
	if (thediv && thediv.style) {
		thediv.style.visibility = 'visible';
	}
}
	
function hideSubNav(thisitem) {
	var divname = "subnav"+thisitem;
	var thediv = document.getElementById(divname);
	if (thediv && thediv.style) {
		thediv.style.visibility = 'hidden';
	}
}

function alarm(text) {
alert(text);
}