/**************************************************************
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 febrer = new Array();
febrer .push(new evento('20080214', 'San Valentí', 'Dia dels enamorats','http://es.wikipedia.org/wiki/San_Valent%C3%ADn'))
febrer .push(new evento('20080229', 'Seminari de Pilar Nogués, de Sciences Politiques-Paris', 'Did Bullionism Matter? Evidence from Cadiz Shadow Market for Silver: 1729-1741','activitat.html'))

var març = new Array();
març .push(new evento('20080314', 'Vicent Bignon (Université de Paris 10-Nanterre i Sciences Po)', 'Cigarette money, black markets and commodity price integration around the 1948 German miracle','activitat.html'))

var abril = new Array();
abril .push(new evento('20080402', 'Seminari:Origins and Development of the American Health Insurance', 'John Murray impartirà una conferència sobre el tema de 12 a 14 hores','activitat.html'))
abril .push(new evento('20080403', 'Seminari:Identifying, separating, and managing asymmetric information: Evidence from short term disability insurance', 'John Murray impartirà una conferència sobre el tema de 12 a 14 hores','activitat.html'))

var maig = new Array();
maig .push(new evento('20100528', 'Workshop Politiques Publiques i Educació', 'Universitat de Girona',''))

var juny = new Array();
juny .push(new evento('20080916', 'Dia mundial del mig ambient', 'Modelos de Bienestar y desarrollo economico en America Latina y Europa del Sur: Una aproximacion de largo plazo desde la perspectiva del gasto publico social','http://es.wikipedia.org/wiki/D%C3%ADa_mundial_del_medio_ambiente'))
juny .push(new evento('20070621', 'Reunió', 'Reunió de la comissió de seguiment de la Xarxa a la conselleria',''))

var setembre = new Array();
setembre .push(new evento('20080916', 'Encuentro internacional Latinoamerica', '',''))
setembre .push(new evento('20090922', 'Dia 22 de Septiembre', 'Dia 22 de septiembre del año 2009',''))

var octubre = new Array();
octubre .push(new evento('20071025', 'Seminari:', 'Papel de la fiscalidad en la construcción de los modelos de bienestar en Uruguay durante el siglo XX',' ../rdi/activitat.html'))
octubre .push(new evento('20081012', 'Festa', 'Festa','activitat.html'))
octubre .push(new evento('20081015', 'XX premi Dr.Rogeli Duocastella', '',','))

var novembre = new Array();
novembre .push(new evento('20071129', 'Seminari Max-Stephan Schulze (LSE)', 'On the Origins of Border Effects: Insights from the Habsburg Customs Union','activitat.html'))
novembre .push(new evento('20081127', 'International Inequality and Polarization in Living Standars, 1870-2000-Leandro Padros de Escosura', 'International Inequality and Polarization in Living Standars, 1870-2000-Leandro Padros de Escosura',''))
novembre .push(new evento('20081107', 'The Contribution of Railways to Economic Growth in Latin America before 1914: the cases of Mexico, Brazil and Argentina. Por Alfonso Herranz', 'Aula 318 ERE. The Contribution of Railways to Economic Growth in Latin America before 1914: the cases of Mexico, Brazil and Argentina. Por Alfonso Herranz',''))

var decembre = new Array();
decembre .push(new evento('20081204', 'The Politics of Pension Reform: The 2007 Social Security Reform in Portugal', 'Seminari a carrec del Dr. Daniel Carolo (ICS- Universitat de Lisboa) amb el títol `The Politics of Pension Reform: The 2007 Social Security Reform in Portugal´',''))
