
// JavaScript Document
$(document).ready(function() {

   // page is now ready, initialize the calendar...

  $('#calendar').fullCalendar({
    weekends: false, // will hide Saturdays and Sundays
	defaultView: 'month',
	firstHour:9,
	events:'https://www.google.com/calendar/feeds/sibiladanzaespanola%40gmail.com/public/basic',
	theme:true,
  	header: {				
		left: 'prev,next today',				
		center: 'title',				
		right: 'month,basicWeek,basicDay'			
		},
	allDaySlot: false,
	buttonText: {
    	prev:     '&nbsp;&#9668;&nbsp;',  // left triangle
    	next:     '&nbsp;&#9658;&nbsp;',  // right triangle
    	prevYear: '&nbsp;&lt;&lt;&nbsp;', // <<
    	nextYear: '&nbsp;&gt;&gt;&nbsp;', // >>
    	today:    'Hoy',
    	month:    'Mes',
    	week:     'Semana',
    	day:      'D&iacute;a'
	},
	titleFormat:{
    	month: 'MMMM yyyy',                             // September 2009
    	week: "d[ yyyy]  MMM{ '&#8212;' d [ MMM] yyyy}", // Sep 7 - 13 2009
    	day: 'dddd, d  MMM, yyyy'                  // Tuesday, Sep 8, 2009
	},
	monthNames: ['Enero', 'Febrero', 'Marzo', 'Abril', 'Mayo', 'Junio', 'Julio',
 	'Agosto', 'Septiembre', 'Octubre', 'Noviembre', 'Diciembre'],
	monthNamesShort: ['Ene', 'Feb', 'Mar', 'Abr', 'May', 'Jun',
 	'Jul', 'Ago', 'Sep', 'Oct', 'Nov', 'Dic'],
	dayNames: ['Domingo', 'Lunes', 'Martes', 'Mi&eacute;coles',
 	'Jueves', 'Viernes', 'S&aacute;bado'],
	dayNamesShort: ['Dom', 'Lun', 'Mar', 'Mie', 'Jue', 'Vie', 'Sab'],
	columnFormat:{
    month: 'ddd',    // Mon
    week: 'ddd d/M', // Mon 9/7
    day: 'dddd d/M'  // Monday 9/7
},
	timeFormat: 'H(:mm)' // uppercase H for 24-hour clock
	
});

});

// JavaScript Document
$(document).ready(function() {

    // page is now ready, initialize the calendar...

  $('#smallCalendar').fullCalendar({
    weekends: false, // will hide Saturdays and Sundays
	defaultView: 'basicDay',
	firstHour:9,
//	height: 200,
	events:'https://www.google.com/calendar/feeds/sibiladanzaespanola%40gmail.com/public/basic',
	theme:true,
  	header: {				
		left: '',				
		center: '',				
		right: ''			
		},
	allDaySlot: false,
	buttonText: {
    	prev:     '&nbsp;&#9668;&nbsp;',  // left triangle
    	next:     '&nbsp;&#9658;&nbsp;',  // right triangle
    	prevYear: '&nbsp;&lt;&lt;&nbsp;', // <<
    	nextYear: '&nbsp;&gt;&gt;&nbsp;', // >>
    	today:    'Hoy',
    	month:    'Mes',
    	week:     'Semana',
    	day:      'D&iacute;a'
	},
	titleFormat:{
    	month: 'MMMM yyyy',                             // September 2009
    	week: "d[ yyyy]  MMM{ '&#8212;' d [ MMM] yyyy}", // Sep 7 - 13 2009
    	day: 'dddd, d  MMM, yyyy'                  // Tuesday, Sep 8, 2009
	},
	monthNames: ['Enero', 'Febrero', 'Marzo', 'Abril', 'Mayo', 'Junio', 'Julio',
 	'Agosto', 'Septiembre', 'Octubre', 'Noviembre', 'Diciembre'],
	monthNamesShort: ['Ene', 'Feb', 'Mar', 'Abr', 'May', 'Jun',
 	'Jul', 'Ago', 'Sep', 'Oct', 'Nov', 'Dic'],
	dayNames: ['Domingo', 'Lunes', 'Martes', 'Mi&eacute;coles',
 	'Jueves', 'Viernes', 'S&aacute;bado'],
	dayNamesShort: ['Dom', 'Lun', 'Mar', 'Mie', 'Jue', 'Vie', 'Sab'],
	columnFormat:{
    month: 'ddd',    // Mon
    week: 'ddd d/M', // Mon 9/7
    day: 'dddd d/M'  // Monday 9/7
},
	timeFormat: 'H(:mm)' // uppercase H for 24-hour clock
	
});

});

