$(document).ready(function(){
	
	$("#news").jCarouselLite({
		vertical: true,
		hoverPause: true,
		visible: 2,
		auto: 5000,
		speed: 1500
	});
	function initYoutube(){
		$('a',"#video_player").youtubin({
			swfWidth : "100%",
			expressInstall : "../swf/expressInstall.swf"
		});
	}	
	$("a","#videos_list").click(function() {
		$("#video_player").empty();
		$("#video_player").html($(this).clone());
		initYoutube();	
		var title = $(this).text();
		$(".section_header h3","#videos").text(title);
		return false;
	});		
	initYoutube();	

	$("a","#videos_list").each(function (i) {
		var thumb_link = $.jYoutube($(this).attr("href"));
		var thumb_title = $(this).text();
		$(this).append('<img src="'+thumb_link+'" alt="'+thumb_title+'" title="'+thumb_title+'"/>');
		
	});

	
	/** Rounded corners
	--------------------------------------------------*/
	//$(".rounded_box").corner("round bottom 10px");
});
