$(document).ready(function() {
    $('#menuIzquierda div').hover(function() {
        $(this).effect("highlight", {
            color: '#676767'
        }, 200);
    }, function() {
    });
    
    $('#carrusel').cycle({
        fx: 'fade',
        random: 1,
        speed: 3000,
        timeout: 3000
    });
});
