$(function(){
	/* Auto Tab Cell Numbers */
	$(".signupFormEntry .txtCellBox1").autotab({ target: $(".signupFormEntry .txtCellBox2"), format: "numeric" });
	$(".signupFormEntry .txtCellBox2").autotab({ target: $(".signupFormEntry .txtCellBox3"), format: "numeric", previous: $(".signupFormEntry .txtCellBox1") });
	$(".signupFormEntry .txtCellBox3").autotab({ format: "numeric", previous: $(".signupFormEntry .txtCellBox2") });
});