function highest(elem){
    var max = 0;
    $(elem).each(function(){
        if ( $(this).outerHeight()>max){
            max=$(this).outerHeight();
        }
    });
    return max;
}
$(document).ready(function(){
    if($('#main').height() > $('#body').height()){
        $('#main').height($('#body').height()-20);
    }
    
    $('.colorbox').colorbox({
        speed:500
    });
    
    $('#carousel ul').cycle({
        fx: 'scrollHorz',
        prev: '#revista_prev',
        next: '#revista_next',
        timeout: 0,
        easing: 'easeOutBack'
    });
    $('#carousel ul li a').click(function(){
        if(!$(this).hasClass('sel')){
            $('#carousel ul li a.sel').removeClass('sel');
            $(this).addClass('sel').children('img').animate({'width':100,'margin-top':0},200);
            $("#carousel ul li a[class!='sel']").children('img').animate({'width':70,'margin-top':20},200);
        }
    });

    /*Guia de instituciones*/
    $('.item_guia').height(highest('.item_guia'));  
    $('#precio,#zona,#terminalidad').change(function(){
        var arr=["precio","zona","terminalidad"];
        var valor;
        $(".item_guia").show(200);
        for (x in arr){
            valor = $('#'+arr[x]).val();
            if(valor!=''){
                $(".item_guia["+arr[x]+"!='"+valor+"']").hide();
            }
        }
        $("#form_guia p strong").html($(".item_guia:visible").length);
    });
    /* /Guia de instituciones*/
});
