// JavaScript Document

function odslon(cid,zilu,height)
{
	//ukrwyam wszystkie
	for(i=1; i<=zilu;i++)
	{
		//alert(i);
	document.getElementById('opis'+i).style.visibility='hidden';
	document.getElementById('link'+i).className = 'notselected';

	}
	
	document.getElementById('opis'+cid).style.visibility='visible';
	document.getElementById('contener').style.height=height+'px';
	document.getElementById('link'+cid).className = 'selected';

}

function obr_over(co)
{
	
	//if(co==2)document.getElementById('img_2').src='i/zrealizowane/2_on.gif';
	//if(co>2)document.getElementById('img_3').src='i/zrealizowane/3_on.gif';
	
	document.getElementById('img_'+co).src='i/zrealizowane/'+co+'_on.gif';
	
}

function obr_out(co,czy)
{
	//if(co==2)document.getElementById('img_2').src='i/zrealizowane/2_off.gif';
	//if(co>2)document.getElementById('img_3').src='i/zrealizowane/3_off.gif'
	if(czy!=1)
	document.getElementById('img_'+co).src='i/zrealizowane/'+co+'_off.gif';
	
}
	
