/**
 * Utility to disable context menu over images.
 *
 * This simply disables the context menu over images that don't form links. It is
 * no protection at all from people saving images, but merely stops the man on the
 * street.
 */ 

var DisableContext = {

  init: function() 
  {
    $('img').bind('contextmenu',function(){ return false; });
  }
  
};

$(document).ready(DisableContext.init);