$(document).ready(function(){
	$("a").each(function() { 
		if ($(this).attr("href").indexOf('http') != -1) {
			$(this).attr("target","_blank");
			if ($(this).attr("title")) $(this).attr("title",$(this).attr("title")+" (abre en nueva ventana)");
			else $(this).attr("title","más info sobre "+$(this).text()+" (abre en nueva ventana)");
			if ($(this).html().toLowerCase().indexOf('img') == -1)
				$('<img src="/santibanez/imagenes/popup.gif" style="margin-left:0.2em" alt="" />').appendTo($(this));
		}
	});
	var numeroBanners = banners.length-2;
	var aleatorio = Math.floor(Math.random()*(numeroBanners+1));
	var banner = banners[aleatorio].split("#")[0];
	var titulo = banners[aleatorio].split("#")[1];
	$("#banner").attr({src:"/santibanez/imagenes/banner/"+banner+".jpg",title:titulo,alt:titulo});
	$(".lightbox").lightbox();
});
