window.onload = function(){
	init_signup();
}

init_signup = function(){
	var form = document.getElementById('form_signup');
	var textboxes = new Array('signup_email', 'signup_zip');
	for(var i=0;i<textboxes.length;i++){
		var textbox = document.getElementById(textboxes[i]);
		textbox.iniText = textbox.value;
		textbox.style.fontStyle = "italic";
		textbox.onfocus = function(){
			if(this.style.fontStyle == "italic"){
				this.value = "";
				this.style.fontStyle = "normal";
			}
		}
		textbox.onblur = function(){
			if(this.value == ""){
				this.style.fontStyle = "italic";
				this.value = this.iniText;
			}	
		}
	}
}