$(document).ready(
		function() {
			$("a[rel=photos]").fancybox(
					{
						'transitionIn' : 'elastic', // te takie wysuwanie
						'transitionOut' : 'elastic', // i chowanie, jesli
														// damy none to sie
														// schowa bez efektu
						'titlePosition' : 'over',
						'titleFormat' : function(title, currentArray,
								currentIndex, currentOpts) {
							return '<span id="fancybox-title-over">Zdjęcie '
									+ (currentIndex + 1) + ' z '
									+ currentArray.length
									+ (title.length ? ' &nbsp; ' + title : '')
									+ '</span>';
						}
					});
		});
jQuery(function() {
	jQuery(".slide_likebox").hover(function() {
		jQuery(".slide_likebox").stop(true, false).animate( {
			right : "0"
		}, "medium");
	}, function() {
		jQuery(".slide_likebox").stop(true, false).animate( {
			right : "-205"
		}, "medium");
	}, 500);
	return false;
});
