


$(document).ready(function(){
	
	$(".email").each(function(index){
		
		var e = $(this).text().replace(/_at_/,'@').replace(/_dot_/,'.');
		$(this).html(e);
		$(this).attr('href','mailto:'+e);

	});

	$(".external").each(function(index){
		
		$(this).attr('target','_blank');

	});

	$("input.datepicker").each(function(index,el){

		$(el).datepicker({showButtonPanel:true});
		$(el).change(function(){ $(el).datepicker('option',{dateFormat:'mm/dd/yy'}); });

	});



});




