window.addEvent('domready', function() {

	var vignette = $('vignette').getProperty('src');

	$$('#menu ul li a, h1 a, #top-link a').addEvents({
		'mouseover': function() {
			$('vignette').setProperty('src', '/data/'+this.getProperty('class')+'.jpg');
		},
		'mouseout': function() {
			$('vignette').setProperty('src', vignette);
		}
	});



	$$('#contact input, #contact textarea').addEvents({
		'focus'	: function(){this.addClass('focused')},
		'blur'	: function(){this.removeClass('focused')}
	});




});
