function change_img(id,ord,short)
{
	im = document.getElementById('pfoto');
	im.src = '/zdjecia/' + id + ',' + ord + ',miniatura,' + short + '.jpg';
	ima = document.getElementById('afoto');
	ima.href = '/zdjecia/' + id + ',' + ord + ',duzy,' + short + '.jpg';
}

function activate_tab(tab, tabs)
{
	for (i=0; i<tabs.length; i++)
	{
		// zmiana widoczności div-a
		z = document.getElementById(tabs[i]);
		if (z == null) continue;
		if (tabs[i] == tab) z.className = 'visible';
		else z.className = '';
		
		// zmiana widoczności linku
		z = document.getElementById('li_' + tabs[i]);
		if (z == null) continue;
		if (tabs[i] == tab) z.className = 'active';
		else z.className = '';
	}
}
