$(document).ready(function() {
	$('#join-club-veg-btn').click(function(event) {
		event.preventDefault();
		clubVegSignup();
	});
	$('#txtEmail').keypress(function(e) {
        if (e.keyCode == 13) {
        	clubVegSignup();
        }
    });
});
function clubVegSignup() {
	var newurl = $('#club-veg-link').val();
	newurl += ($('#txtEmail').val() != "Enter Email") ? '?email=' + $('#txtEmail').val() : "";
	window.location.replace(newurl);
}