/**
 * @author joaquin
 */
var Sidebar = new function() {
	
	this.changeMonth = function() {
		Sidebar.loading();
		$.get(this.href,{sidebar : true},function(data){
			$("#calendario").html(data);
			Sidebar.init();
		});
		return false;
	}
	
	this.loading = function() {
		$("#calendario").html("<p id='mes'><img src='"+webroot+"img/loading.gif' /> Espere un momento...</p>");
	}
	
	this.init = function() {
		$('#calendario a.paging').click(Sidebar.changeMonth);
		$('#calendario a.calendar_link').cluetip({splitTitle: '|',fx : {open : 'fadeIn'}, width:550});
	}
}

$(document).ready(Sidebar.init)