/*window.addEvent('domready', function() {
	
	//create our Accordion instance
	var myAccordion = new Accordion($('accordion'), 'img.toggler', 'div.element', {
		opacity: true,
		display:2,
		onActive: function(toggler, element){
			toggler.setStyle('color', '#41464D');
		},
		onBackground: function(toggler, element){
			toggler.setStyle('color', '#528CE0');
		}
	});

	
});*/

function staedteauswahl(wert)
	{
		switch(wert){
			case '0': alert('Bitte waehlen Sie eine Stadt aus!');
			break;
			case '1': window.open('http://www.mini-guide.com/miniguide1-09.htm','_blank');
			break;
			default: alert('Diese Seite ist noch in Arbeit');
			}
			
	}
