prevent image downloads on right click
<script> $('img').bind('contextmenu', function(e) { return false; }); </script>