var elem = "#menuFlotante";
var menuYloc = null;

// pre-submit callback
function disableSend(data, form_object, options) {
    $('.botonsubmit').css('margin-left', '204px').css('width', '7em').val('Enviando...').attr("disabled","disabled");
};

// post-submit callback 
function showResponse(responseText, statusText)	 {	
    $('.botonsubmit').removeAttr("disabled").css('margin-left', '230px').css('width', '5em').val('Enviar');
    alert(responseText.message);
};	        

// Imagen anterior y siguiente en las galerias
function prev_img() {
    if ($('#current_photo_index').html() != '1') { 
        var $current = $('#fotoVisor').find('img:visible'); 
        $('#fotoVisor').find('img').css('display', 'none'); 
        $current = $current.prev(); 
        $current.css('display', 'block'); 
        $('#pieDeFoto').text($current.attr('alt')); 
        $('#current_photo_index').html(parseInt($('#current_photo_index').html()) - 1); 
    };
};	        
function next_img(last_img_index) {
    if ($('#current_photo_index').html() != last_img_index ) { 
        var $current = $('#fotoVisor').find('img:visible'); 
        $('#fotoVisor').find('img').css('display', 'none'); 
        $current = $current.next(); 
        $current.css('display', 'block'); 
        $('#pieDeFoto').text($current.attr('alt')); 
        $('#current_photo_index').html(parseInt($('#current_photo_index').html()) + 1); 
    };
};

// fin

// Wrapper para jQuery.load() que muestra un gif animado mientras se ejecuta
function jload(object, url, indicator) {
    object.html("<div style=\'margin-right:0px; margin-left: 0px; width:100%\'><img id='indicador_carga' src=\'"+indicator+"\') /></div"); 
    object.load(url);
};

// fin

// Cuando se expande una seccion (ver todo) se colapsan las otras 
var section_nav_urls = {'audios_nav' : '/pagina_oficial/audios/recientes/', 'agenda_nav' : '/pagina_oficial/eventos/recientes/', 'galeria_nav' : '/pagina_oficial/galerias/recientes', 'videos_nav' : '/pagina_oficial/videos/recientes' };

function collapse_sections(section_open) {
    for (section in section_nav_urls) {
        if (section != section_open) {
            $('#'+section).load(section_nav_urls[section]);
        };
    };
};

// fin

$(document).ready(function() { 
    // Efecto animacion del navegador omnipresente
    menuYloc = parseInt($(elem).css("top").substring(0,$(elem).css("top").indexOf("px")), 10);
	$(window).scroll(function() {
		var offset = menuYloc+$(document).scrollTop()+"px";
		$(elem).animate({top:offset},{duration:500,queue:false});
	});
 	
	var offset = menuYloc+$(document).scrollTop()+"px";
	$(elem).animate({top:offset},{duration:500,queue:false});

    // fin

    // Manejo de forms con ajaxForm
    var options = {
        beforeSubmit: disableSend, // pre-submit callback    
        success: showResponse,  // post-submit callback
        dataType: 'json', // response type
        clearForm: true // clear all form fields after successful submit
    };

	$('#send_comment_form').ajaxForm(options);  
	$('#send_me_news_form').ajaxForm(options);
	
	// fin
	
	// Rotacion de comentarios en seccion Ida y Vuelta
	$('#derechaComentarios').cycle({ 
        fx:    'fade', // transition effect
        speed:  4000,  // milliseconds
        pause:  1,     // pause when the mouse hovers over the slide?
        random:  1     // random order instead of sequential order?
    });    

    // fin
    
	// Rotacion de fotos de apoyos
	$('#centroApoyos').cycle({ 
        fx:    'fade', // transition effect
        speed:  2000,  // milliseconds
        pause:  1,     // pause when the mouse hovers over the slide?
        random:  1     // random order instead of sequential order?
    });    
    
    // fin
    
    $('#id_email').focus(function() {
        $(this).val("");
    });
    
});



