

$(document).ready(function(){
	
	$('.lnkOverlay').click(function(){
		
		$.colorbox({href:$(this).attr('href')+ ' ' + $(this).attr('rel'), width:550});
		return false;
		
	});
	
	$('a.colorbox').colorbox();
	
	
	//construit le select des annees
	var selMois = $('select#pbrc1');
	if(selMois.length){
		var aMois = [['janvier', 'January'], ['février', 'February'], ['mars', 'March'], ['avril', 'April'], ['mai', 'May'], ['juin', 'June'], ['juillet', 'July'], ['août', 'August'], ['septembre', 'September'], ['octobre', 'October'], ['novembre', 'November'], ['décembre', 'December']];
		
		var currentTime = new Date();
		var month = currentTime.getMonth() + 1;
		var year = currentTime.getFullYear();
		
		var lngIdx = 0;
		if(gLng=='e') lngIdx=1;
		
		var iMonth;
		for(var i=0; i<12; i++){
			iMonth = month+i;
			if(iMonth==13){
				year++;
			}
			iMonth=(iMonth-1) % 12;
			
			$('#optionBeyond').before($('<option/>').val(iMonth+'-'+year).html(aMois[iMonth][lngIdx]+' '+year));
			
		}

	}

});

	//link vers l'option selectée dans le menu accès rapide aux musees
var accesRapide =  function(sel){
	var u=sel[sel.selectedIndex].value;
	window.location=u;
}

