var duracion = 5000;
var duracion_fade = 2000;

var Pasador = function () {

    this.first = true;

    this.init = function () {
        $("#header div.image-web img:first").show();
        $("#header div.image-web img:not(:first)").hide();
        this.i = 0;
        this.n = $("#header div.image-web img").size();
        this.next();
    }

    this.next = function () {
        if (!this.first) $("#header div.image-web img:visible").fadeOut(duracion_fade);
        var img = $("#header div.image-web 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();

$(document).ready(function () {
    pasador.init();
    if ($("#header div.image-web img").size() > 1) {
        setInterval("pasador.next()",duracion);
    }
});
