(function( $ ){
  $.fn.videoCarousel = function() {

	this.each(function() {
		
		
		var videos = $(this).find("#video-nav").children('li');
		
		// default load player to first video in list
		var videoID = $(videos[0]).attr('videoId');
		var params 	= { allowScriptAccess: "always" };
		var atts 	= { id: "ytPlayer" };
		swfobject.embedSWF("http://www.youtube.com/v/" + videoID + "&enablejsapi=1&playerapiid=player1",
		                   "video-player", "480", "295", "8", null, null, params, atts);
		$(videos[0]).addClass("selected");
		

		videos.click(function(){		
			videos.removeClass("selected");		

			$(this).addClass("selected");
			ytplayer.loadVideoById( $(this).attr("videoId") );
		});

	});

  };
})( jQuery );


function onYouTubePlayerReady(playerId) {
	ytplayer = document.getElementById("ytPlayer");
}

