//positions sparkline on team page
$('.positions').sparkline('html', {
	type: 'line',
	width: '200px',
	height: '45px',
	normalRangeMin: '-21',
	normalRangeMax: '-1',
	spotColor: false,
	minSpotColor: false,
	maxSpotColor: false,
	normalRangeColor: '#008914'
} );

//player points sparklines, both cumulative and week by week
$('.playerpoints').sparkline('html', {
	type: 'line',
	width: '347px',
	height: '100px',
	spotColor: false,
	minSpotColor: false,
	maxSpotColor: false,
	defaultPixelsPerValue: '1', 
	normalRangeColor: '#FFFFFF'
} );

