window.addEvent('domready', function() {
	/*
	 * Soft hover transition on 'big' links on front page
	 */
	$$('h2 a').each(function(e) {
		
		// get and store background-color of link element
		e.store('linkBgColor', e.getStyle('background-color'));
		
		e.addEvent('mouseenter', function() {
			e.tween('background-color', '#564210');
		});
		
		e.addEvent('mouseleave', function() {
			e.tween('background-color', e.retrieve('linkBgColor'));
		});

	});
	
	
	/*
	 * Force links to open in new tab/window
	 */
	$$('a').each(function(tag) {
		if(tag.getProperty('rel') == 'external') {
			tag.setProperty('target', '_blank');
		}
	});
	
	
	/*
	 * Set url to Google maps
	 *
	 * Hardcoded gives invalid xhtml by Validator
	 */
	var mapURL = 'http://www.google.nl/maps?f=q&source=s_q&hl=nl&geocode=&q=particolare,+groningen&sll=52.469397,5.509644&sspn=3.909067,8.470459&ie=UTF8&hq=particolare,&hnear=Groningen&ll=53.21134,6.573107&spn=0.007505,0.016544&z=16&iwloc=A';
	$('adres').getElement('a').set('href', mapURL);
});
