$(document).ready(function() {
	$(".lightbox_zestaw").lightbox( {
		fitToScreen : true,
		imageClickClose : false
	});
	
	$(".lightbox").lightbox( {
		fitToScreen : true,
		imageClickClose : true
	});

	$(".lightbox img").mouseover(function() {
		$(this).addClass("over");
	}).mouseout(function() {
		$(this).removeClass("over");
	});

});
