$(document).ready(function() {
			var chart = new Highcharts.Chart({
				chart: {
					renderTo: 'chart-activitiesnew',
					margin: [0, 0, 0, 0]
				},
				title: {
					text: ''
				},
				plotArea: {
					shadow: null,
					borderWidth: null,
					backgroundColor: null
				},
				tooltip: {
					formatter: function() {
						return '<b>'+ this.point.name +'</b>: '+ this.y +' %';
					}
				},
				plotOptions: {
					pie: {
						allowPointSelect: true,
						dataLabels: {
							enabled: true,
							formatter: function() {
								if (this.y > 5) return this.point.name;
							},
							color: 'white',
							style: {
								font: '13px Trebuchet MS, Verdana, sans-serif'
							}
						}
					}
				},
				legend: {
					layout: 'vertical',
					style: {
						left: 'auto',
						bottom: 'auto',
						right: '0px',
						top: '50px'
					}
				},
			        series: [{
					type: 'pie',
					name: 'Browser share',
					data: [
						['Sleep',   29.2],
						{
							name: 'Design',
							y: 20,
							sliced: true,
							selected: true
						},
						['Development',    13.1],
						['IT Support',    4],
						['Email',     4],
						['Skills &amp; Education',   15.4],
						['Recreation',   10.2],
						['Gym',   4]
					]
					//data: [3.40, 1.05, 2.90, 1.65, 1.35, 2.59, 1.39, 3.07, 2.82]
				}]
			});
			
			
		});