$(document).ready(function() {
    mostrarMensajeEmergente = function(texto, tiempo) {
        $('#mensajeFlotante').fadeIn('normal');
        setTimeout("$('#mensajeFlotante').fadeOut('slow')", tiempo);
        $('#mensajeFlotante').text(texto);
    }
    
    _redimensionar = function() {
        if ($('#resultados').height() > $('#menuSuperior').height()) {
            var dimension = $('#resultados').height();
        } else {
            var dimension = $('#menuSuperior').height();
        }
        
        $('#contenedor #contenido').height(document.body.clientHeight -
        ($('#contenidoSuperior').height() + dimension +
        $('#cabecera').height() +
        $('#pie').height()) -
        46);
    }
    
    _redimensionar();
    
    $(window).resize(function() {
        _redimensionar();
    });
    
    /*$(window).ajaxError(function(evt, request, settings) {
        window.location.href = settings.url + '&error=500';
    });*/
    
    $('#menuIzquierda div').click(function() {
        window.location.href = $(this).children('a').attr("href");
    });
});
