$(document).ready(function(){

	$("#hphone").mask("(999) 999-9999");
	/* Form Buttons */
/**/var calf_button = $.cookie('calf_button');
if(!calf_button) {
	$.get("http://www.calfinder.com/ajax?action=buttonHandler", function(data){
		var text = data;
		$.cookie('calf_button', text, { expires: 1, path: "/"});
		$(".two_step_form button").empty();
		$(".two_step_form button").append(text);
	});
} else {
	var calf_button = $.cookie('calf_button');
	$(".two_step_form button").empty();
	$(".two_step_form button").append(calf_button);
	
}

});
	