msgs = ['Uw naam','Uw e-mail adres', 'Uw onderwerp', 'Uw bericht'];

window.addEvent ( 'domready', function () {
	
	$$('input[type="text"]').combine ( $$('textarea' )).addEvent ( 'focus', function (e) {
		
		if ( this.get ( 'value' ) === msgs [ this.getAllPrevious ().length ] ) {
			this.set ( 'value', '' );
			
		}
			
	});
	
	$$('input').combine ( $$('textarea' )).addEvent ( 'blur', function (e) {
		
		if ( this.get ( 'value' ) === '' && ( this.get ( 'type' ) === 'textarea' || this.get ( 'type' ) === 'text' ) ) {
			this.set ( 'value', msgs [ this.getAllPrevious ().length ] );
			
		}
		
	});
	
});

window.addEvent ( 'domready', function () {
	var f = document.getElementById('form-contact');
	
	if ( f ) {
		f.addEvent ( 'submit', function (e) {
			e.stop ();
			
			MOOdalBox.openPost (
				document.location.href,
				'', 
				'457 260',
				f
			);
			
		});
	}
	
});
