$(function () {

    var data, chartOptions;
    data = [
            { label: "Product 1", data: Math.floor (Math.random() * 100 + 250) }, 
            { label: "Product 2", data: Math.floor (Math.random() * 100 + 350) }, 
            { label: "Product 3", data: Math.floor (Math.random() * 100 + 650) }, 
            { label: "Product 4", data: Math.floor (Math.random() * 100 + 50) },
            { label: "Product 5", data: Math.floor (Math.random() * 100 + 250) }
    ];
    chartOptions = {                
            series: {
                    pie: {
                            show: true,  
                            innerRadius: .5, 
                            stroke: {
                                    width: 4
                            }
                    }
            }, 
            legend: {
                    position: 'ne'
            }, 
            tooltip: true,
            tooltipOpts: {
                    content: '%s: %y'
            },
            grid: {
                    hoverable: true
            },
            colors: App.chartColors
    };
var holder = $('#donut-chart');
if (holder.length) {
            $.plot(holder, data, chartOptions );
}

});