// pinched from http://www.dynamicdrive.com/dynamicindex9/noright.htm //Disable right mouse click Script //By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive //For full source code, visit http://www.dynamicdrive.com var message="You are not permitted to download, save or email this image. Visit www.otagoimages.co.nz to purchase a copy."; $(document).ready(function() { $('img').bind("contextmenu",function(e) { alert(message); return false; }); });