var Web = Web ||
{
    'config': {},
    'acciones': {}
};

Web.lanzarAcciones = function(context){
    context = context || document;
    jQuery.each(Web.acciones, function(){
        this(context);
    });
};

$(document).ready(function(){
    Web.lanzarAcciones(this);
});

Web.acciones.inicarAnimacion = function(){
        $("#slider1").bxSlider({
        auto: true,
        controls: false,
        pause: 3000,
        autoHover: true

        });

};

