$(function(){
	$(document).bind('contextmenu', function(e){

		if(e.target.tagName.toLowerCase() == 'img')
		{
			e.preventDefault();
		}
	})
})