function mostraChart() {
var chart;
                chart = new Highcharts.Chart({
                    chart: {
                        renderTo: 'container',
                        margin: [50, 0, 0, 0],
                        plotBackgroundColor: 'none',
                        plotBorderWidth: 0,
                        plotShadow: false                
                    },
                    title: {
                        text: 'Eleccions Estatals 2011'
                    },
                    subtitle: {
                        text: 'Cercle intern: 2008, Cercle extern: 2011'
                    },
                    tooltip: {
                        formatter: function() {
                            return '<b>'+ this.series.name +'</b><br/>'+ 
                                this.point.name +': '+ this.y +' %';
                        }
                    },
                    series: [{
                        type: 'pie',
                        name: '2008',
                        size: '45%',
                        innerSize: '20%',

	                                   data: [		
			 { name: 'CIU', y: 24.24, color: '#039' },
            { name: 'ERC', y: 9.57, color: '#FC0' },
            { name: 'PSC', y: 41.06, color: '#C00' },
            { name: 'PP', y: 15.02, color: '#3CF' },
            { name: 'ICV-EUiA', y: 5.69, color: '#390' }
	
	

			
         ],
         dataLabels: {
            enabled: false
         }
      }, {
         type: 'pie',
         name: '2011',
         innerSize: '45%',
         data: [

			 { name: 'CIU', y: 34.36, color: '#039' },
            { name: 'ERC', y: 10.49, color: '#FC0' },
            { name: 'PSC', y: 22.26, color: '#C00' },
            { name: 'PP', y: 18.62, color: '#3CF' },
            { name: 'ICV-EUiA', y: 6.74, color: '#390' },
			{ name: 'PxC', y: 2.04, color: '#DB843D' },
			{ name: 'Eb', y: 1.74, color: '#DB843D' },
			{ name: 'UPyD', y: 0.67, color: '#F0F' }	
           
                        ],
                        dataLabels: {
                            enabled: true,
                            color: '#000000',
                            connectorColor: '#000000'
                        }
                    }]
                });
}
