$(document).ready(function(){
   inicializarTooltip();
});

function inicializarTooltip() {
	$('#a_calendario td[class*=fechaevento]').each(function() {
		var contenido = $(this).attr('title');
		var evento = "";
		if (contenido.indexOf('|') != -1) {
			contenido = contenido.substr(contenido.indexOf('|') + 1);
		}
	 	var lista = contenido.split(" - ");
	 	contenido = '<ul class="tooltip">';
	 	for (var i=1; i<lista.length; i++)  {
	 		evento = lista[i].substr(lista[i].indexOf(':') + 1);
	 		contenido += '<li>' + evento + '</li>';
	 	}
	 	contenido += '</ul>';
		$(this).attr('title', ''); 	     
		$(this).qtip({
		 	content: { text: contenido },		 	
		 	position: { corner: { target: 'bottomMiddle', tooltip: 'topRight' } },
		 	style: { fontSize: '0.75em', name: 'dark', tip: 'topRight', title: { fontSize: '0.8em' } },
			show: { effect: function(){ $(this).animate({"height": "toggle", opacity: 0.85} ) } }
		});
	});
}
