$(document).ready(function(){
	$(".miniPhoto").click(function(){
		$(this).parent().siblings().removeClass("wybrana")
		$(this).parent().addClass("wybrana");
		$(this).parent().append("<span></span");
		
		var link = $(this);
		$("#duzeZdjecie").slideUp('slow', function() {
			$("#duzeZdjecie").children("img").attr("src", $(link).attr("href"));
		});
		$("#duzeZdjecie").slideDown();
		return false;
	});
        $("div.starszeNowsze a").live ("click",function() {
                var page = 'page'+$(this).attr('href').replace('/realizacje/index/','');
                $(this).parent().parent().fadeOut(500, function() {
                        $("#"+page).fadeIn(500);
                    });
                //$(this).parent().parent().hide();
                //$("#"+page).show();
                return false;
            });
});