$(document).ready(function() {
	$("#emailField").attr("value", "输入你的 e-mail");

	var text = "输入你的 e-mail";

	$("#emailField").focus(function() {
		$(this).addClass("active");
		if($(this).attr("value") == text) $(this).attr("value", "");
	});

	$("#emailField").blur(function() {
		$(this).removeClass("active");
		if($(this).attr("value") == "") $(this).attr("value", text);
	});
});
