$(document).ready(function() {

	$("#nav_top li:last").css({'border-color' : 'transparent'});

	if($.getURLParam("c") != null) {
		$("html, body").animate({ 'scrollTop': $("#comment" + $.getURLParam("c")).offset().top}, 2000);
	}

	$("a.ajax").fancybox({
		'hideOnContentClick': false,
		'showNavArrows': false,
		'ajax': {
		    'data': {
		        'nocache':'true'
		    }
		}
	});
	
    $("a.ajax-img").fancybox();
	
	  $("abbr.timeago").timeago();

    $('#zobacz').live('click', function() {
        if($('.recenzja').is(':visible')) {
            $('.recenzja').hide();
            $(this).text('▶ zobacz naszą recenzję');
        } else {
            $('.recenzja').show();
            $(this).text('▼ ukryj recenzję');
        }
        $.fancybox.resize();
    });
    
    $(function(){
    	$('#rec-lista').infiniteCarousel({
    	    'textholderHeight': 0.10,
    	    'thumbnailWidth': '22px',
    	    'thumbnailHeight': '22px',
    	    'thumbnailFontSize': '.8em',
    	    'autoStart': false,
    	    'displayProgressBar': false,
    	    'autoHideControls': true,
    	    'imagePath': '/media/js/infinitecarousel/images/'
    	    
    	});
    });

});
