Event.observe(window,'load',function() {
	$('sufon_input').observe('focus', function() {
		if($F('sufon_input') == 'Enter your email address') {
			$('sufon_input').value = '';
		}
	});
	if($('hf1')) {
		$('hf1').observe('focus', function() {
			if($F('hf1') == 'Enter your email address') {
				$('hf1').value = '';
			}
		});
	}
});