window.addEvent('domready',function(){
	var links = $$('#headerRight ul li a');
	links.each(function(item){
		item.addEvents({
			'mouseover': function(){
				var hover = $(item.get('rel'));
				hover.removeClass('hidden');
			},
			'mouseout': function(){
				var hover = $(item.get('rel'));
				hover.addClass('hidden');
			},
			'click': function(event) {
				event.stop();
			}
		});
	});
	var naam = $('naam').get('value');
	$('naam').addEvents({
		'focus': function() {
			if (this.get('value') == naam) {
				this.set('value','');
			}
		},
		'blur': function() {
			if (this.get('value') == '') {
				this.set('value',naam);
			}
		}
	});
	var email = $('email').get('value');
	$('email').addEvents({
		'focus': function() {
			if (this.get('value') == email) {
				this.set('value','');
			}
		},
		'blur': function() {
			if (this.get('value') == '') {
				this.set('value',email);
			}
		}
	});
});

