// Table Date Visualization
$(function() {
  $('table.pie').visualize({
    type: 'pie',
    width: 600,
    height: 250
    });	
	$('table.bar').visualize({
    type: 'bar',
    width: 650,
    height: 250
    });
	$('table.line').visualize({
    type: 'line',
    width: 600,
    height: 200
    });
	$('table.area').visualize({
    type: 'area',
    width: 600,
    height: 200
    });
});

// Caption Creation for Images in postings
$(function() {
  $('p img').jcaption();
});
