jQuery('#example-1').jstars({
	image_path: 'images'  
});
				
			This example illustrates "white" style. As you can see we do not specify any parameters, so style and frequency are set to "white" and "12" automatically.
jQuery('#example-1').jstars({
	image_path: 'images'  
});
				
			This one illustrates "blue" style.
Also we increased frequency a bit.
jQuery('#example-blue').jstars({
	image_path: 'images',
	style: 'blue',
	frequency: 15
});
				
			
jQuery('#example-yellow').jstars({
	image_path: 'images',
	style: 'yellow',
	frequency: 20
});
				
			This example illustrates "yellow" style.
And the frequency is set to max value.
jQuery('#example-yellow').jstars({
	image_path: 'images',
	style: 'yellow',
	frequency: 20
});
				
			This example illustrates "red" style.
The frequency is low here, so the stars shine rarely.
jQuery('#example-red').jstars({
	image_path: 'images',
	style: 'red',
	frequency: 5
});
				
			
jQuery('#example-green').jstars({
	image_path: 'images',
	style: 'green'
});
				
			This example illustrates "green" style.
jQuery('#example-green').jstars({
	image_path: 'images',
	style: 'green'
});
				
			Our plugin has tricky mode - to show all stars colors randomly.
You should use style "rand" for this feature.
jQuery('#example-rand').jstars({
	image_path: 'images',
	style: 'rand'
});
				
			You can try to prepare your own asset to display different image instead of stars.
To do that you should make a sprite of 9 images, each next part is differ from previous with 40 degrees angle.
Let's try how candy cane looks... It will be good for Xmas eve :)
jQuery('#example-rand').jstars({
	image_path: 'images',
	image: 'candy-cane-stars.png',
	style: 'white',
	width: 34,
	height: 34,
	delay: 700,
	frequency: 5
});