/**************************************************************
Calendario con efemérides y eventos. Script por Tunait! (21/4/2007)
Script de libre uso con la condición de que permanezcan intactas estas líneas, osea, los créditos.
Distribución no autorizada en sitios de script sin previa autorización
Ver condiciones de uso en http://javascript.tunait.com/
tunait@yahoo.com 
****************************************************************/
/** Configuración general **/
var idContenedor = "miCalendario" //id del contenedor donde se insertará el calendario
var calendarioCursor = 'pointer'
var calendarioPaddingCelda = 1; //Corrige la posición del cuadro que marca el día seleccionado en caso de haberse aplicado un padding a las celdas
var tagTitulos = 'h2' //Tag a usar en los títulos de eventos y efemérides
var textoVerTodos = 'Todos los eventos del mes'
/** fin configuración general **/


function evento(fecha, titulo, texto, enlace, ventana){
	this.fecha = fecha;
	this.titulo = titulo;
	this.texto = texto;
	this.enlace = false;
	if(enlace) this.enlace = enlace;
}

/** agregamos los listados de efemérides y eventos por meses:
var nombreDelMes = new Array();
nombreDelMes.push(new evento('fecha en formato aaaammdd o mmdd', 'Título', 'Texto','Link [opcional]'));
**/
var enero = new Array();

var febrero = new Array();

var abril = new Array();

var mayo = new Array();


var junio = new Array();

junio.push(new evento('0614', '51 FERIA GANADERA EQUINA GRADO -A- AGROINDUSTRIAL Y COMERCIAL DE MONTERIA', '',''))
junio.push(new evento('0615', '51 FERIA GANADERA EQUINA GRADO -A- AGROINDUSTRIAL Y COMERCIAL DE MONTERIA', '',''))
junio.push(new evento('0616', '51 FERIA GANADERA EQUINA GRADO -A- AGROINDUSTRIAL Y COMERCIAL DE MONTERIA', '',''))
junio.push(new evento('0617', '51 FERIA GANADERA EQUINA GRADO -A- AGROINDUSTRIAL Y COMERCIAL DE MONTERIA', '',''))
junio.push(new evento('0618', '51 FERIA GANADERA EQUINA GRADO -A- AGROINDUSTRIAL Y COMERCIAL DE MONTERIA', '',''))
junio.push(new evento('0619', '51 FERIA GANADERA EQUINA GRADO -A- AGROINDUSTRIAL Y COMERCIAL DE MONTERIA', '',''))

var julio = new Array();


var agosto = new Array();



var septiembre = new Array();

var diciembre = new Array();

