/**
 * Destinations Class
 */
 
var destinations = new Destinations();

function Destinations() {
	var _l0 = this;
	$(document).ready(function() {
		_l0.build();
	});
};

Destinations.prototype.updateDate = function(next) {
	var _l0 = this;
	_l0.currentMonth0 = _l0.currentMonth0 + next;
	_l0.currentMonth1 = _l0.currentMonth1 + next;
	_l0.currentMonth2 = _l0.currentMonth2 + next;
	if (_l0.currentMonth0 == -1) {
		_l0.currentMonth0 = 11;
	}
	if (_l0.currentMonth0 == 12) {
		_l0.currentMonth0 = 0;
	}
	if (_l0.currentMonth1 == -1) {
		_l0.currentMonth1 = 11;
	}
	if (_l0.currentMonth1 == 12) {
		_l0.currentMonth1 = 0;
	}
	if (_l0.currentMonth2 == -1) {
		_l0.currentMonth2 = 11;
	}
	if (_l0.currentMonth2 == 12) {
		_l0.currentMonth2 = 0;
	}
	
	$('.prev', _l0.doc).empty();
	$('.prev', _l0.doc).append('&lt;&lt; ' + _l0.months_a[_l0.currentMonth0]);
	
	$('.month', _l0.doc).empty();
	$('.month', _l0.doc).append(_l0.months_b[_l0.currentMonth1]);
	
	
	$('.next', _l0.doc).empty();
	$('.next', _l0.doc).append(_l0.months_a[_l0.currentMonth2] + ' &gt;&gt;');
};

Destinations.prototype.build = function() {
	var _l0 = this;
	_l0.months_a = ['ENE', 'FEB', 'MAR', 'ABR', 'MAY', 'JUN', 'JUL', 'AGO', 'SEP', 'OCT', 'NOV', 'DIC'];
	_l0.months_b = ['ENERO', 'FEBRERO', 'MARZO', 'ABRIL', 'MAYO', 'JUNIO', 'JULIO', 'AGOSTO', 'SEPTIEMBRE', 'OCTUBRE', 'NOVIEMBRE', 'DICIEMBRE'];
	_l0.currentDate = new Date();
	_l0.currentMonth1 = _l0.currentDate.getMonth();
	_l0.currentMonth0 = _l0.currentMonth1 - 1;
	_l0.currentMonth2 = _l0.currentMonth1 + 1;
	
	$('.carousel-map', _l0.doc).carousel('.prev', '.next', function() { _l0.updateDate(-1) }, function() { _l0.updateDate(1) });
	_l0.updateDate(0);
};
