jQuery(document).ready(function(){
	image_protection();
});

function image_protection() {
	jQuery('.entry img')
		.not('.exclude, .thumbnail, .attachment-thumbnail')
		.add('.p3-lightbox-gallery-thumbs img').each( function(){
			jQuery(this).bind('contextmenu', function(){return false;});
		});
}


