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);
    
});

