jQuery(function($)
{
	$('.cv-custom-video .cv-navigation .cv-paging li a').click(function() 
	{
		var slide = '.slide-' + $(this).attr('rel');
		$(this).parents('.cv-custom-video:eq(0)').find('.active').removeClass('active');
		$(this).parents('.cv-custom-video:eq(0)').find('p').html($(this).attr('title'));
		$(this).parents('.cv-custom-video:eq(0)').find('.cv-video-slide').css({'display':'none'});
		$(this).parents('.cv-custom-video:eq(0)').find(slide).css({'display':'block'});
		$(this).addClass('active');
		
		return false;
	});
	$('.cv-custom-video .cv-navigation .cv-paging').each(function() 
	{
		$(this).find('a:eq(0)').click();
	});
});
