window.onload = function(){
	var ssEmail = document.getElementById('ssEmail');
	ssEmail.value = 'enter.your@email.com'
	ssEmail.onfocus = function(){
		if (this.value == 'enter.your@email.com') {
			this.value = '';
		}
	}
	ssEmail.onblur = function(){
		if (this.value == '') {
			this.value = 'enter.your@email.com'
		}
	}
}

