jQuery(document).ready(function(){	
	
	// general functions
	image_protection();	
	
	
});

function image_protection() {
		jQuery('.post img').not('.exclude, .thumbnail, .attachment-thumbnail').each(function(){
			jQuery(this).bind('contextmenu', function(){return false;});
		});
}
