window.onload = function () {

                var r2 = Raphael("holder2",500,250);
                r2.g.txtattr.font = "12px 'Fontin Sans', Fontin-Sans, sans-serif";

                //r2.g.text(320, 100, "Interactive Pie Chart").attr({"font-size": 20});

                var pie = r2.g.piechart(120, 120, 100, [91, 69, 54,19], {colors: ["#1751a7","#a02725","#0d7608","#a78a17"], legend: ["Hauptwache (91)", "Löschzug Au (69)","Löschzug Maria Gern (54)","Jugend (19)"], legendpos: "east"});
                pie.hover(function () {
                    this.sector.stop();
                    this.sector.scale(1.1, 1.1, this.cx, this.cy);
                    if (this.label) {
                        this.label[0].stop();
                        this.label[0].scale(1.5);
                        this.label[1].attr({"font-weight": 800});
                    }
                }, function () {
                    this.sector.animate({scale: [1, 1, this.cx, this.cy]}, 500, "bounce");
                    if (this.label) {
                        this.label[0].animate({scale: 1}, 500, "bounce");
                        this.label[1].attr({"font-weight": 400});
                    }
                });

};
