jQuery.noConflict();

jQuery(function() {
	// Corrección del calendario
	jQuery('.calendar table td.button:first').remove();
	jQuery('.calendar table td.title:first').attr('colspan','7');

	// Caja de busqueda
	jQuery('#terminoBusqueda').toggleVal();
	

	// Selector de tamaño
	if (!jQuery.cookie('sizeTurismo') || jQuery.cookie('sizeTurismo') == "optimo") {
		jQuery('#global').css('width','755px');
		jQuery('#menuGeneral').after('<p id="ajustarPantalla"><a class="ajustar" href="#" title="Ajustar pantalla al ancho de la ventana">Ajustar a pantalla</a></p>');
	}
	else if (jQuery.cookie('sizeTurismo') == "ajustado") {
		jQuery('#global').css('width','96%');
		jQuery('#menuGeneral').after('<p id="ajustarPantalla"><a class="optimo" href="#" title="Ajustar pantalla al tamaño optimo">Tamaño óptimo</a></p>');
	}
	
	
	jQuery('#menuGeneral').parent().find('p#ajustarPantalla a').bind('click', function(e) {
		if (!jQuery(this).hasClass('optimo')) {
			jQuery.cookie('sizeTurismo', 'ajustado', { expires: 30 });
			
			jQuery('#global').css('width','96%');
			jQuery(this).text('Tamaño óptimo').removeClass('ajustar').addClass('optimo');
		}
		else {
			jQuery.cookie('sizeTurismo', 'optimo', { expires: 30 });
			
			jQuery('#global').css('width','755px');
			jQuery(this).text('Ajustar a pantalla').removeClass('optimo').addClass('ajustar');
		}
		
		e.preventDefault();
	});
});