$( document ).ready( function(){
	
	if( $('.video-items a').length > 0 ) {
		
		$('.video-items a').click( function(){
			
			var html = $( this ).parent().find('span').html();
			
			$('#video-cnt').html( html );
			
			$('.video-items a').removeClass('active-video');
			$( this ).addClass('active-video');
			return false;
		});
	}
})