$(document).ready(function(){


	    /*  ALL EXTERNAL LINKS OPEN IN NEW WINDOW  */
	    
		jQuery("a[href^='http:']").not("[href*='klammerlegal.com']").attr('target','_blank');


	    /*  JQUERY SPAM BLOCKER  */	
	
		$('a.email').each(function(){
			e = this.rel.replace('/','@').replace('site','klammerlegal.com');
			this.href = 'mailto:' + e;
		});
		

});



