/* 

Batts Law Bootup Script
v. 1.0

last mod: 2-27-09
by: Mark

*/


/*##################################################################################*/


$(document).ready(function() {

	
	/* obfuscate emails */
	$("a").each(function(i){
		var href = $(this).attr("href");
		if ( href.indexOf("contact/") >= 0 ) {
			href = href.replace("contact/?id=", "mailto:");
			href = href.replace("+","@");
			href = href.replace("+",".");
			$(this).attr("href",href);
		}
		
		linkText = $(this).text();
		if ( linkText.indexOf("+battslaw+com") >= 0 ) {
			linkText = linkText.replace("+","@");
			linkText = linkText.replace("+",".");
			$(this).text(linkText);
		}
		
	});

	
});