$(document).ready(function()
{
	$('#carousel').jcarousel(
	{
		scroll: 1,
		itemVisibleInCallback: {
            onAfterAnimation:  function(carousel, item, idx, state) 
			{
				$('#background_image').hide().css('background','#000 url(' + videos[parseInt(idx)-1]['background'] + ') no-repeat center top').fadeIn();
				$('#carousel_watch').attr('href', videos[parseInt(idx)-1]['permalink']);
			}
        }
	});
	$("#twitter_timeline").getTwitter(
	{
		userName: "john_charter",
		numTweets: 2,
		loaderText: "Loading tweets...",
		slideIn: true,
		slideDuration: 750,
		showHeading: false,
		headingText: "Latest Tweets",
		showProfileLink: false,
		showTimestamp: true
	});
	if ($(videos).size()>0)
	{
		var img=new Image();
		$(videos).each(function(index)
		{
			img.src=videos[index]['background'];
		});
	}
});
