function rightClickDisable(){
	$('img').bind("contextmenu",function(e){
		alert('The images and data published in the Chace Catalogue are protected by copyright. Use of this material is strictly prohibited without prior written permission from the American Textile History Museum. Please contact the Rights and Reproductions department for commercial and non-commercial use of images. See Contact page.');
		return false;
	});
}
$(document).ready( function() {
	rightClickDisable();
});