window.addEvent('domready', function() {
	$('goog_address').addEvent('click', function(event){
		if (this.value == 'Enter your address or zip code')
		{
			this.value = '';
		}
	});
	$('goog_address').addEvent('blur', function(event){
		if (this.value == '')
		{
			this.value = 'Enter your address or zip code';
		}
	});
});