jQuery(document).ready(function(){
    BSAFoto.registerRightclickProtection();
 });

var BSAFoto={
    registerRightclickProtection:function(){
        jQuery('img').mousedown(function(e){
            if(e.button==2){
                jQuery(this).mouseup(function(){
                    jQuery(this).unbind('mouseup');alert('Dit materiaal is door copyright beschermd en mag niet zonder toestemming worden overgenomen.');
                    return false;
                });
            }
        });
        jQuery('img').bind('contextmenu',function(){return false;});
    }
}

