/* */



// Listen to the search enginge and paste or delete the text when needed:
	Event.observe(window, 'load', function () 
	{
		$('searchfield').observe('click', function()
				{
					if(this.value='Zoek op trefwoord...' )
					{
						this.value = ''	
					}	
				});	
				
		
		if ($('newsletter_emailaddress') != undefined){
		
			// Listen to the smailing list and paste or delete the text when needed:
			$('newsletter_emailaddress').observe('click', function()
					{
						if(this.value='Vul hier uw emailadres in' )
						{
							this.value = ''	
						}
					});	
		}
			
	})
