/* The followinf functions are specifically for jQuery UI related items
* Created June 16, 2010
*/

$(document).ready(function() {
	//Wrap a paragraph tags around caption content
	/*This is done to add padding to the gallery caption on the home page*/
	$("span.gallery-caption").wrapInner("<p>" + "</p>");
	
	
	//Specifically for the jCarousel in the footer
	jQuery('#book_carousel ul').jcarousel({
		  wrap: 'circular'
	});
});

