var duracion = 5000;
var duracion_fade = 2000;

var pasador_home = function () {

    this.first = true;

    this.init = function () {
        $(".Images img:first").show();
        $(".Images img:not(:first)").hide();
        this.i = 0;
        this.n = $(".Images img").size();
        this.next();
    }

    this.next = function () {
        if (!this.first) $(".Images img:visible").fadeOut(duracion_fade);
        var img = $(".Images img").eq(this.i);
        this.i = this.i + 1;
        if (this.i >= this.n) this.i = 0;
        img.fadeIn(duracion_fade);
        this.first = false;
    }
}

var pasador = new pasador_home();

$(document).ready(function () {

    pasador.init();
    if ($(".Images img").size() > 1) {
        setInterval("pasador.next()",duracion);
    }

});