﻿var $j = jQuery.noConflict();

$j(document).ready(function() {
	
	$j('#breadcrumb a').each(function() {
		
		// añadimos los enlaces al video de Libranda
		if ( $j(this).text().indexOf('Libros Electrónicos') > -1 && typeof($j('#video_libranda')[0]) == 'undefined' ) {
		
			$j(this).parent().append('<div id="video_libranda" class="floatright" style="text-align: right;"><small xmlns="http://www.w3.org/1999/xhtml">¿Quieres saber como funciona el proceso de un libro electrónico con Libranda?, <a title="Tutorial de compra" target="_blank" href="http://www.youtube.com/watch?v=pnZZJ04Iw-g http://www.youtube.com/watch?v=pnZZJ04Iw-g"><strong>mira este vídeo</strong></a></small></div>');
			
		}
		
	});
	
});


