//Video Carousel
	$(document).ready(function() {
     $('#videoCarousel').jcarousel({
		scroll: 3
    });
});
//Video Change listener
$(document).ready(function() {
	$('.videoChange').click(function() {
	  //get video id from rel attribute
	  var youtubeID = $(this).attr('rel');
	  var vidID = $(this).attr('id').slice(-2);
	  $('#video_box').find('iframe').get(0).setAttribute('src','http://www.youtube.com/embed/' + youtubeID); //change video
	});
});
