//	vars

$(document).ready(function() {
	fPopulateEmailAddresses();
});

//	Populate all email addresses on the site using Javascript to avoid bots from picking up on them.
function fPopulateEmailAddresses() {
	//	Output this text with the email address using javascript to prevent bots from picking up on it.
	var strEmail = "foreclosuremediation@adr.org";
	$(".lnkEmail").html(strEmail).attr("href", "mailto:" + strEmail);
	$(".lblEmail1").html("susan.progoff@ropesgray.com");
	$(".lblEmail2").html("websitemail@adr.org");
	$('#mm17').html("MortgageMediation17th@adr.org").attr("href","mailto:MortgageMediation17th@adr.org");
	$('#mm18').html("MortgageMediation18th@adr.org").attr("href","mailto:MortgageMediation18th@adr.org");
}

$(document).ready(function() {
	//alert("test");
	$('#programDropdown').change(function(){
		if($(this).val() != "")
			window.location = $(this).val();
	});
	
	$('#countyDropdown_es').change(function(){
		if($(this).val() != "" && $(this).val() != " ")
			window.open($(this).val());
	});
});
