$(document).ready(function(){

	$("a.button").prettyPhoto({
		theme: 'shpg',
        showTitle: false,
        allowresize: false
	});

	$(".doclist a").click(function(){window.open(this.href); return false;});
	$(".year-wrapper a").click(function(){window.open(this.href); return false;});

});


//zebrovana tabulka
(function($) {
    $.fn.extend({
        striper: function(options) {
            var defaults = {
                even: "#e2e2e2",
                odd: "#ffffff"
            };
            var zebra = $.extend(defaults, options);
            var obj = $(this);
            obj.find('tr:odd').css('background', zebra.odd);
            obj.find('tr:even').css('background', zebra.even);
        }
    });
})(jQuery);

$(document).ready(function(){
    $('table.zebra').striper({
    	even: "#f4f7f8",
        odd: "#ffffff"
    });
});
