jQuery.fn.validarImagen = function()
    {
        return this.each(function(){
            $(this).error(function () {
                $(this).attr("src","/images/noimagen.jpg")
            });
        });
    }
