$(document).ready(function() {
	$(".mostrarevento").live("click", function(e) {		/* ACCION DEL LINK DEL EVENTO */
		e.preventDefault();
		MostrarEvento_cargar($(this).attr("ideve"));
		return false;
	});
	$("#agenda a[class='mostrarevento']").each (function() {
		$(this).css("cursor","pointer");
	});
	$("#agenda a[class!='mostrarevento']").each (function() {
		$(this).css("text-decoration","none");
		$(this).css("cursor","default");
	});

	$("#agenda a[class!='mostrarevento']").live("click", function(e) {
		e.preventDefault();
		return false;
	});
});

function MostrarEvento_cargar(id) {
	if (id>0)
		$("#ifrmod").attr("src", "/modulo.php?nocache="+Math.random()+"&mop=mostrarevento&id="+id);
}
function MostrarEvento_mostrar(tit, cont) {
	$("#popup").html(cont);
	$("#popup").dialog({ title: tit, width: 500, height: 300});
	$("#popup").dialog("open");
}

