$(function() {

	$("#calendarioEventos").datepicker( {
		dateFormat : 'yy-mm-dd',
		nextText : 'siguiente &#187;',
		prevText : '&#171; anterior &#124;',
		dayNamesMin : [ 'D', 'L', 'M', 'X', 'J', 'V', 'S' ],
		firstDay : 1,
		onChangeMonthYear : function(year, month, inst) {
			setTimeout("populateDays(" + year + ", " + month + ")", 100);
		}
	});

});
