var page = document.location.href.slice(document.location.href.lastIndexOf('/')+1);


function selectPlace(placeID,__set) {
	var map = document.getElementById('ineos-map');
	map.selectPlaceFromHTML(placeID,__set);
}


window.onload = function() { 
	var fx = new Fx.Styles($('quicklinks'), {duration: 500, wait: false, transition: Fx.Transitions.Quad.easeInOut });
		
	$('quicklinks').addEvent('mouseenter', function() { 
		fx.start({
			'margin-top': 0
		});
	});
	
	$('quicklinks').addEvent('mouseleave', function() { 
		fx.start({
			'margin-top': -140
		});
	});
	
	
	if(page == 'inbelgie.php') { 
		$('zwijndrecht').onmouseover = function() {
			selectPlace(1,true);
		};
		$('zwijndrecht').onmouseout = function() {
			selectPlace(1,false);
		};
	}
	
}
