
$(document).ready(function () {
    var tokens = window.location.pathname.split('/');
    if (tokens.length > 0) {
        var pageName = tokens[tokens.length - 1];
        $("#nav,.menu").find("a[href='" + pageName + "']").each(function () {
            $(this).addClass("current");
        });
    }
	
	$(".btnJoin").click(function() {
	    var email = $(".txtEmail").val();
		$(this).attr("href", "http://visitor.constantcontact.com/d.jsp?ea=" + email + "&m=1102448203418&p=oi");
		return true;
	});
});
