$(document).ready(function(){
    /*
    $('img').bind("contextmenu",function(e){ // $(document) afecta a toda la página
        return false;
    });
    $('img').mousedown( function(){
        return false;
    })*/
    $('img').live("contextmenu",function(e){ // $(document) afecta a toda la página
        return false;
    });
    $('img').live('mousedown', function(){
        return false;
    })
});
