$(document).ready(function(){

$(function() {
            
			$('img').hover(
				
				function(){
				$(this).bind("contextmenu", function(e) {
					e.preventDefault();
					
				});
				
				},
				function(){
					
				}
       		
			);
			
			
			}); 



 });
