var foto_actual = 0;
function switchPicture(){
    var trans_time = 2000;
    $('#home-top .images img:eq('+ foto_actual +')').fadeOut(trans_time);
    $('#mac .imagenes img:eq('+ foto_actual +')').fadeOut(trans_time);
    
    foto_actual = (foto_actual + 1) % $('#home-top .images img').length;

    $('#home-top .images img:eq('+ foto_actual +')').fadeIn(trans_time);
    $('#mac .imagenes img:eq('+ foto_actual +')').fadeIn(trans_time);

    window.setTimeout(switchPicture, 5000);
}

$(document).ready(function(){
    window.setTimeout(switchPicture, 5000);
});

