/**
			 * We use the initCallback callback
			 * to assign functionality to the controls
			 */
			function syndcarousel_initCallback(synd) {
				
				jQuery('#synd-carousel-next').bind('click', function() {
					synd.next();
					return false;
				});
			
				jQuery('#synd-carousel-prev').bind('click', function() {
					synd.prev();
					return false;
				});
			};
			
			
			
			jQuery(document).ready(function() {
				jQuery("#synd-carousel").jcarousel({
					vertical: true,
					//wrap:'circular',
					scroll: 1,
					initCallback: syndcarousel_initCallback,
					// This tells jCarousel NOT to autobuild prev/next buttons
					buttonNextHTML: null,
					buttonPrevHTML: null
				});
			});
			
			
			function latestcarousel_initCallback(latest) {
				jQuery('#latest-carousel-next').bind('click', function() {
					latest.next();
					return false;
				});
			
				jQuery('#latest-carousel-prev').bind('click', function() {
					latest.prev();
					return false;
				});
			};
			
			jQuery(document).ready(function() {
				jQuery("#latest-carousel").jcarousel({
					vertical: true,
					//wrap:'circular',
					scroll: 1,
					initCallback: latestcarousel_initCallback,
					// This tells jCarousel NOT to autobuild prev/next buttons
					buttonNextHTML: null,
					buttonPrevHTML: null
				});
			});
			
			
			
			function sitescarousel_initCallback(sites) {
				
			
				jQuery('#sites-carousel-next').bind('click', function() {
					sites.next();
					return false;
				});
			
				jQuery('#sites-carousel-prev').bind('click', function() {
					sites.prev();
					return false;
				});
			};
			
			jQuery(document).ready(function() {
				jQuery("#sites-carousel").jcarousel({
					wrap:'circular',
					scroll: 1,
					initCallback: sitescarousel_initCallback,
					// This tells jCarousel NOT to autobuild prev/next buttons
					buttonNextHTML: null,
					buttonPrevHTML: null
				});
			});
