$( document ).ready( function() {
	
	$( 'a[rel=video]' ).fancybox( {
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'titlePosition' 	: 'inside',
		'titleFormat'		: showPopupTitle
	} );
} );

function showPopupTitle(title, currentArray, currentIndex, currentOpts){
	
	$('#fancybox-left').remove();
	$('#fancybox-right').remove();
	
	if ( currentArray.length == 1 ) {
		
		$( '#popup_title_' + currentIndex + ' .lists_nav' ).hide();
	}
	
	if ( currentIndex == 0 ) {
		
		$( '#popup_title_' + currentIndex + ' .lists_nav a.back' ).addClass( 'no_hover' );
	}
	
	if ( currentIndex == currentArray.length - 1 ) {
		
		$( '#popup_title_' + currentIndex + ' .lists_nav a.next' ).addClass( 'no_hover' );
	}
	
	return $( '#popup_title_' + currentIndex ).html();
}
