$(document).ready(function(){
						   
						   	/// Carousel
	/// Carousel Control
	function mycarousel_initCallback(carousel) {
		jQuery('.sbLongMediaRight').bind('click', function() {
			carousel.next();
			return false;
		});

		jQuery('.sbLongMediaLeft').bind('click', function() {
			carousel.prev();
			return false;
		});
	};


	/// Carousel Settings
	jQuery("#sbLongMediaSlider").jcarousel({
		scroll: 1,
		animation: 500,
		initCallback: mycarousel_initCallback,
		// This tells jCarousel NOT to autobuild prev/next buttons
		buttonNextHTML: null,
		buttonPrevHTML: null
	});

});
