$(document).ready(function() {
	$('img.usecaption').jcaption({
		//Element to wrap the image and caption in
		wrapperElement: 'span',
	
		//Class for wrapper element
		wrapperClass: 'caption',
	
		//Caption Element
		captionElement: 'span',
	
		//Attribute of image to use as caption source
		imageAttr: 'alt',

		//If true, it checks to make sure there is caption copy before running on each image
		requireText: true,
	
		//Should inline style be copied from img element to wrapper
		copyStyle: false,
	
		//Strip inline style from image
		removeStyle: true,
	
		//Strip align attribute from image
		removeAlign: true,
	
		//Assign the value of the image's align attribute as a class to the wrapper
		copyAlignmentToClass: false,

		//Assign the value of the image's float value as a class to the wrapper
		copyFloatToClass: true,

		//Assign a width to the wrapper that matches the image
		autoWidth: false,
	
		//Animate on hover over the image
		animate: false,
	
		//Show Animation
		show: {opacity: 'show'},
		showDuration: 200,
	
		//Hide Animation
		hide: {opacity: 'hide'},
		hideDuration: 200	
	});
});