2009 Individual Sales by Category
food auto household furniture kitchen bath
Mary 190 160 40 120 30 70
Tom 3 40 30 45 35 49
Brad 10 180 10 85 25 79
Kate 40 80 90 25 15 119

	$(function(){
		//make some charts
		$('table').visualize({type: 'pie', pieMargin: 10, title: '2009 Total Sales by Individual'});	
		$('table').visualize({type: 'line'});
		$('table').visualize({type: 'area'});
		$('table').visualize();
	});