$(document).ready(function() {
	// cllips
	$(".carousel").jCarouselLite({
      btnNext: ".bottom",
      btnPrev: ".top",
      visible: 4,
      scroll: 1,
			vertical: true,
      speed: 250,
      circular: false
  });

 // news
  $(".home_carousel").each(function(index) {
  	$(this).jCarouselLite({
	    btnNext: ".right"+index,
	    btnPrev: ".left"+index,
	    visible: 1,
	    scroll: 1,
	    speed: 250,
	    circular: true
	  });
  });

	// demo clips
	$("#boxClips li a, #newsFrom a.news_video").click(function() {
		open_video($(this).attr("href"));
		return false;
	});
	
	$("#boxClips li:first a").click();
});

function open_video (url)
{
	$("#video").flashembed({
		src: url + "&hl=en&fs=1&rel=0&autoplay=1",
		width: "444px",
		height: "270px",
		allowscriptaccess: "always",
		allowFullScreen: "true"
	});
}
