$(function() {
	$("a.lightbox").colorbox({current:'zdjęcie {current} z {total}',previous:'poprzenie',next:'następne',close:'zamknij'});
	$("a[rel='lightbox']").colorbox({current:'zdjęcie {current} z {total}',previous:'poprzenie',next:'następne',close:'zamknij'});
	$("a[rel='lightbox[pics]']").colorbox({current:'zdjęcie {current} z {total}',previous:'poprzenie',next:'następne',close:'zamknij'});
	
	$('ul.sf-menu a').each(function() {
		$(this).hover(function() {
			$(this).stop().animate({ opacity: 0.7 }, 200);
			},
		function() {
			$(this).stop().animate({ opacity: 1.0 }, 500);
		});
	});
	$('.img').each(function() {
		$(this).hover(function() {
			$(this).stop().animate({ opacity: 0.8 }, 200);
			},
		function() {
			$(this).stop().animate({ opacity: 1.0 }, 500);
		});
	});
});