
// jQuery
//
////////////////////////////
jQuery(function(){
    jQuery("#wysuwane").css("left","-210px");
    jQuery("#wysuwane").hover(
        function () {
            jQuery("#wysuwane").animate({left: "0px"}, 1000 );
            jQuery(this).addClass("zamknij");
        },
        function () {
            jQuery("#wysuwane").animate({left: "-210px"}, 1000 );
            jQuery(this).removeClass("zamknij");
        }
    );
});
$(document).ready(function()
{


	$("a[rel=imggroup]").fancybox({
		'overlayColor': '#000',
		'overlayOpacity': 0.8
	});


});

