/**
 * Scripts de la page Vidéo
 */
jQuery("document").ready(function($) {
	$(".blocVideo").each(function() {
		if( $(this).find(".wp-pagenavi").children("a:last").text() != "»" ) {
			$(this).find("a.fleche_droite").remove();
		}
	
		if( $(this).find(".wp-pagenavi").children("a:first").text() != "«" ) {
			$(this).find("a.fleche_gauche").remove();
		}
		
		$(this).find(".wp-pagenavi").children("a").each(function() {
			$(this).attr("href", $(this).attr("href") + "?page=" + $(this).parent().parent().parent().attr("id"));
		});
	});
});

