// JavaScript Document
function initNewsletterBox() { 
	$("#email_address").keypress(function(event){ 
	  if (event.keyCode == 13 && ($(this).val() == "e-mail..." || $(this).val() == "")) {
			return false;
		} 
	});
	$("#email_address").focus(function() {
		$(this).val("");
		$(this).removeClass("inactive");
	});	
	$("#email_address").blur(function(){
		if ($(this).val() == "") {
			$(this).val("e-mail...");
			$(this).addClass("inactive");
		}
	});	
	$("#newsletterbutton").click(function(){
		if ($("#email_address").val() != "e-mail..." && $("#email_address").val() != "") {
			return true;
		} else {
			return false;
		}
	});	
}