/**************************************************************
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 = 3; //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 = 'Llistar tot el mes'
/** fin configuración general **/


function evento(fecha, titulo, texto, enlace){
	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 gener = new Array();
gener .push(new evento('0122', 'Provincial grups de xou', 'Sort!',''))	

var febrer = new Array();
febrer .push(new evento('0212', 'Català grups de xou', 'Vilanova i la Geltrú',''))

var marc = new Array();
marc .push(new evento('0311', 'Espanyol grups de xou a Alcobendas', '',''))

var abril = new Array();
abril.push(new evento('0403', 'Festival CPA Girona', '',''))
abril.push(new evento('0416', 'Festival Vidreres. 17:30h', '',''))

var maig = new Array();
maig .push(new evento('0501', 'Festival St. Jordi Desvalls. Rates','',''))
maig .push(new evento('0508', 'Festival CPA Figueres. Rates','',''))
maig .push(new evento('0515', 'Coupe France a Arnas', '','')) 
maig .push(new evento('0521', 'XVII Festival del CP Bescanó', '',''))
maig .push(new evento('0529', 'Festival Arbúcies. Pingüins','',''))

var juny = new Array();
juny .push(new evento('0605', 'Festival Celrà. 17:00 Pingüins','',''))
juny .push(new evento('0611', 'Festival CP Salt.18:00 Tètris','',''))
juny .push(new evento('0612', 'Campionat preliminar i promoció.LLoret de Mar','',''))
juny .push(new evento('0619', 'Festival UE La Salle.18:00 Tètris','',''))

var juliol = new Array();
juliol .push(new evento('0722','Festival FD Cassanenc.20:00 Tètris','',''))
juliol .push(new evento('0723','Sopar final de temporada. 21:00','',''))
juliol .push(new evento('0729','Permilada i guerra aigua','',''))

var agost = new Array();
agost.push(new evento('0830', 'Inici entrenaments. Veure noticies breus','',''))

var setembre = new Array();
setembre.push(new evento('0901', 'HORARIS 2011-2012','',''))
setembre.push(new evento('0903', 'Xou, de 15 a 17','',''))
setembre.push(new evento('0904', 'Xou, de 11 a 13','',''))
setembre.push(new evento('0910', 'Xou, de 15 a 17','',''))
setembre.push(new evento('0917', 'Xou, de 15 a 17','',''))
setembre.push(new evento('0918', 'Xou, de 18 a 20:30','',''))
setembre.push(new evento('0924', 'Xou, de 15 a 17','',''))

var octubre = new Array();
octubre.push(new evento('1001', 'Xou, de 15 a 17', ''))
octubre.push(new evento('1002', 'Xou, de 11 a 13', ''))
octubre.push(new evento('1008', 'Xou, de 15 a 17', ''))
octubre.push(new evento('1012', 'Festival de Quart. 18:00 Tètris', ''))
octubre.push(new evento('1015', 'Xou, de 15 a 17', ''))
octubre.push(new evento('1016', 'Xou, de 18 a 20:30', ''))
octubre.push(new evento('1022', 'CASTANYADA Xou, de 15 a 17', ''))
octubre.push(new evento('1029', 'Xou, de 15 a 17', ''))
octubre.push(new evento('1030', 'Xou, de 11 a 13', ''))

var novembre = new Array();
novembre.push(new evento('1105','Xou, de 15 a 17', ''))
novembre.push(new evento('1112','Xou, de 15 a 17', ''))
novembre.push(new evento('1113','Xou, de 18 a 20:30', ''))
novembre.push(new evento('1119','Xou, de 15 a 17', ''))
novembre.push(new evento('1126','Xou, de 15 a 17', '17:00 REVISIO MEDICA'))
novembre.push(new evento('1127','Xou, de 11 a 13', ''))

var desembre = new Array();
desembre.push(new evento('1203', 'Xou, de 15 a 17', ''))
desembre.push(new evento('1206', 'Xou', ''))
desembre.push(new evento('1208', 'Xou', ''))
desembre.push(new evento('1210', 'Xou, de 15 a 17', ''))
desembre.push(new evento('1211', 'Xou, de 18 a 20:30', ''))				 
desembre.push(new evento('1217', 'Xou, de 15 a 17', ''))

