$(document).ready(function() {
	$(".captify").captify({
		animation: "always-on",
		opacity: '0.7'
	});
	$('.boxout').colorbox();
	$(".youtubebox").each(function(){
		url = $(this).attr("href"); 
        v = url.slice(url.indexOf('watch?v=') + 8, url.length) 
        $(this).colorbox({
			href:"/ajax/youtube/" +v,
			width: "642px",
			height: "543px"
		}); 
	});
});