function goTo(url)
{
	location = url;
}

/* submenu mobiliteitsproducten  */
function showSubProduct(){
	
	var elmSub = document.getElementById('prodSub');
	elmSub.style.visibility = "visible";
	
}

function hideSubProduct(){
	
	var elmSub = document.getElementById('prodSub');
	elmSub.style.visibility = "hidden";
	
}
