if (typeof jQuery == 'undefined') { 
alert('You dont have jQuery loaded on this website. Please use no-jQuery version of NoPrint.org javascript.');
}
(function($) { 
   $.fn.noPrint = function(settings) {
     if (settings) $.extend(config, settings); 
     this.each(function() {
							$("body > *").addClass('dontPrint');
						 //$(this).addClass('dontPrint');
						 }); 
     return this; 
   }; 
 
$(document).ready(function(){
						   $("body").append("<div class='no-print'>This site is print protected by NoPrint.org . Please stop printing, Save trees, Save planet.</div><style type='text/css'>.no-print { display:none;} @media print { .dontPrint { 	display:none!important; } .no-print { 	display:block; color:green; }  }</style>");
						   }); })(jQuery);
$("body").noPrint();