﻿$(function () {
    $('div.colapsable h3.colapsado').next('div.texto').hide();
    $('div.colapsable h3').click(function () {
        $(this).next('div.texto').toggle();
        $(this).toggleClass('colapsado');        
        scrollbar.recalc();
    });
});

$(function () {
    var i = 0;
    var fotos = $('#fotos-principal img');
    var mostrar = function () {
        $(fotos[i]).fadeOut();
        if (i == fotos.length - 1) {
            i = 0;
        }
        else {
            i++;
        }
        $(fotos[i]).fadeIn();
    };
    setInterval(mostrar, Math.random() * 4000 + 2500);
});

$(function() {
    $("div#menu-izq a[href='#']").click(function() {
        $(this).next('div.submenus').show();
        $(this).parent().children('a.on').next('div.submenus').hide();
        return false;
    });
});
