	
	/* Modified by Alex Spooner, 2009-04-17 18:37:04 EST */

  function rightClickLock()
  {
		$("img").mousedown(function(e){
  		if(e.button==2) {
  			alert("This content is copyrighted and may not be reproduced or used in any way without the express written permission of CHAUVET.");
  			return false;
  		} else {
  			return true;
  		}
		});
		$("img").each( function() {
			$(this)[0].oncontextmenu = function() {
				return false;
			}
		});
  }
	
	$(document).ready(function(){
	 rightClickLock();
	});
	