$(document).ready(function() {
	$("#mc-embedded-subscribe-form label").remove();
	$("#mce-EMAIL").attr("value", "Enter your email address");

	var text = "Enter your email address";

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

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

