$(document).ready(function(){
	
	function mycarousel_initCallback(carousel) {

			$('#mycarousel-next').bind('click', function() {
				carousel.next();
				return false;
			});

			$('#mycarousel-prev').bind('click', function() {
				carousel.prev();
				return false;
			});

		};

		$("#mycarousel").jcarousel({
				scroll: 1,
				wrap: 'both',
				initCallback: mycarousel_initCallback,	
				buttonNextHTML: null,
				buttonPrevHTML: null
			});

		$('div.tweets ul ').cycle({ 
			fx: 'fade',
			prev: '#previous',
			next: '#next',
			speed : 3000
		});
		
		$('#video-section div.controls div.titles').cycle({
			timeout:0,
			next: '#mycarousel-next',  
			prev: '#mycarousel-prev',
			slideExpr: 'h2'
		});

});