jQuery(function(){
	$('#nav li.link a').mouseenter(function() {
		$(this).animate({
			borderBottomWidth: 0,
			paddingTop: 16,
			paddingBottom: 18,
			color: '#ffffff'
		}, 100, function() {
			// Animation complete.
		});
	});
	$('#nav li.link a').mouseleave(function() {
		$(this).animate({
			borderBottomWidth: 9,
			paddingTop: 10,
			paddingBottom: 15,
			color: '#666666'
		}, 100, function() {
			// Animation complete.
		});
	});
})

function showRoute(form) {
	var straatnaam = form.adress.value;
	var woonplaats = form.city.value;
	var url ='http://maps.google.nl/maps?f=d&source=s_d&saddr=' + straatnaam + ',+' + woonplaats + '&daddr=Hoofdstraat+11,+Apeldoorn&hl=nl&geocode=&mra=ls&sll=52.095059,5.037125&sspn=0.011337,0.033023&g=Hoofdstraat+11,+Apeldoorn&ie=UTF8&t=h&z=11';
	//var url = 'http://maps.google.nl/maps?daddr=Parkzichtlaan+207,+3544+Utrecht&geocode=&dirflg=&saddr=' + straatnaam + ',+' + woonplaats + '&f=d&sll=51.973129,5.317964&sspn=0.008605,0.019312&ie=UTF8&t=h&z=10';
	window.open(url,'route','width=1024, height=768, toolbar=yes, scrollbars=yes');
}
