/** Configuracin general **/
var idContenedor = "miCalendario" 
var calendarioCursor = 'pointer'
var calendarioPaddingCelda = 4; 
var tagTitulos = 'h2'
var textoVerTodos = 'Veure tots els esdeveniments del mes'
/** fi configuraci general **/

function evento(fecha, titulo, texto, enlace){
	this.fecha = fecha;
	this.titulo = titulo;
	this.texto = texto;
	this.enlace = enlace;
	if(enlace) this.enlace = enlace 
}
var febrer = new Array();
febrer .push(new evento('0212', 'Curs de capacitaci per a animadors de grups: FEAC 1', '', 'http://www.escolacristiana.org/Fitxers/FEAC%20pares_mares.pdf'))
febrer .push(new evento('0226', '4a Trobada Familiar Escola Cristiana', '', 'http://www.escolacristiana.org/Fitxers/2troFam2011.pdf'))
var maig = new Array();
maig .push(new evento('0510', 'AMPAs a punt!', '', 'http://www.escolacristiana.org/Fitxers/AMPAsapunt21.pdf'))




