var current 		= 0;
//secciones
var secciones	= ['home','quienes','servicios','destinos','programas','financiacion','testimonios','ofertas'];

var bgcolor 		= '#eeeeee';

//-------------------TRANSICIONES----------------------///
function transicion(next) {
	$('#'+secciones[current]).fadeOut('slow', function() {
		//si es nex o back
		if(next == '1') {
			current ++;
			if(current > (secciones.length-1))
				current = 0;
		} else {
			current --;
			if(current < 0)
				current = secciones.length - 1; 
		} 
		if(secciones[current] == 'ofertas')
			document.formularioOferta.reset();
		$('#'+secciones[current]).fadeIn('slow');
	});
}

function ir(sec) {
	var ir_index; 
	var i = 0;
	for(i = 0; i < secciones.length; i++) {
		if(secciones[i] == sec) {
			ir_index = i;
			break;
		}
	}
	if(sec == 'ofertas')
		document.formularioOferta.reset();
	$('#'+secciones[current]).fadeOut('slow', function() {
		current = ir_index;											   
		$('#'+secciones[ir_index]).fadeIn('slow');
	});
}

/**************************Formulario de Contacto*******************/
function mostrar_formulario(seccion,formulario) {
	document.getElementById(formulario).reset();
	$('#'+seccion).fadeIn('slow');
}


function cerrar(seccion) {
	var accion="cerrar_seccion('"+seccion+"')";
	window.setTimeout(accion, 5000);
}

function cerrar_seccion(seccion) {
	if(seccion == 'ofertas_enviado')
		ir('home');
	else
		$('#'+seccion).fadeOut('slow');
}
