$(document).ready(function () {
	$("#topmenu .floatleft .pbForm div .form .item .field input.signup-email").focus(function () {
		if ($(this).val() === "Enter your email to signup") {
			$(this).val("");
		}
	}).blur(function () {
		if ($(this).val() === "") {
			$(this).val("Enter your email to signup");
		}
	});
});
