jQuery(document).ready(function() 
{		
	plot4 = jQuery.jqplot('chartoune',[ line1 ],{
		grid: { shadow: true, borderWidth: 2  },
		legend: { show: true, location: 'w'  },
		series: [  {  renderer: jQuery.jqplot.PieRenderer,  shadow: true, rendererOptions:{sliceMargin:8}  }  ]

	});
	
	plotgeo = jQuery.jqplot('chartounegeo',[ linegeo ],{
		grid: { shadow: true, borderWidth: 2  },
		legend: { show: true, location: 'w'  },
		series: [  {  renderer: jQuery.jqplot.PieRenderer,  shadow: true, rendererOptions:{sliceMargin:0}  }  ]

	});
	
	plothist = jQuery.jqplot('chart_hist',[ line_hist ],{
		grid: { shadow: true, borderWidth: 2  },
		legend: { show: true, location: 'nw'  },
		series: [   {lineWidth:2, markerOptions:{style:'circle'},   shadow: true , label:'Marché secondaire' }  ],
		highlighter: {sizeAdjust: 7},
		axes:{  xaxis:{  renderer:jQuery.jqplot.DateAxisRenderer, tickOptions:{formatString:'%#d/%m/%y'}},   yaxis:{  label:'Valeur',  tickOptions:{formatString:'%.2f €'}, autoscale: true   } }
	
	});
	
});
