var _chart1_plot_properties;
$(document).ready(function(){
_chart1_plot_properties = {
"legend":{
"show":true
},"seriesDefaults":{
"renderer":$.jqplot.BezierCurveRenderer
}
}
$.jqplot.config.enablePlugins = true;
$.jqplot.config.defaultHeight = 300;
$.jqplot.config.defaultWidth = 400;
_chart1= $.jqplot("chart1", [[[0,1],[2,2,4,0.5,6,0]],[[0,5],[2,6,5,1,6,0.5]],[[0,6],[3,9,4,8,6,3]],[[0,7],[2,9,4,8,6,6]],[[0,8],[3,9,4,8,6,8]]], _chart1_plot_properties);
});