$(document).ready(function(){
	$('img').each(function(){
		$(this).bind("contextmenu", function(e){
			return false;
		});
	})
});

