function galeria(div) {
	$('#'+div).cycle({ 
		fx: 'fade', 
		speed: 1000, 
		timeout: 6000,
		before:  onBefore
	});
}
function onBefore(curr, next, opts)  { 
	var div = $(this).parent().attr('id');
	var index = $(this).parent().children().index(this);
	var title = $(this).children('img').attr('title');
	var href = $(this).attr('href');
	if (!title) {
		$('#nazwa_'+div+'').html(title);
	} else {
		$('#nazwa_'+div+'').html('<a href="' + href + '">' + title + '</a>');
	}
}

function foto(nazwa,kat,x,y) {
	var kont
	var wys=screen.height
	var szer=screen.width
	var left
	var top

	left=(szer-x)/2
	top=(wys-y)/2
  	o = window.open('foto.php?nazwa='+nazwa+'&&kat='+kat+'', 'Galeria', 'toolbar=0, location=0, directories=0, status=0, menubar=0, scrollbars=0, resizable=0, copyhistory=0, status=0, left='+left+', top='+top+', width='+x+', height='+y+'')
	o.focus();
	//return false;
}