
function showCities() {
	
	var curStatus = dojo.byId("cities").style.display;
	var targetNode = dojo.byId('cities');
	
	if (curStatus == "none") {

		dojo.fx.wipeIn({ node: targetNode }).play();

	} else {
		
		dojo.fx.wipeOut({ node: targetNode }).play();
		
	}
	
}



function toggleLaden() {
	
	var targetNode = dojo.byId('ladendetails');
	var curStatus = dojo.byId("ladendetails").style.display;
	
	if (curStatus == "none") {
		
		dojo.fx.wipeIn({ node: targetNode }).play();

	} else {

		dojo.fx.wipeOut({ node: targetNode }).play();

	}
		
	
}

function hideButton() {
	if (dojo.byId("ladenbutton")) {
		dojo.byId("ladenbutton").style.display = "none";
	}
}
