$(document).ready(function () {
  $('.video.box, .video.list, .video.text').each(function() {
		var vid;
		if (vid = $(this).getVideoId()) 
			$(this).addClass('pointer').hover(function() {
				$('.video_'+vid).addClass('hover');
			}, function(){
				$('.video_'+vid).removeClass('hover');
			});
	});
});