Event.observe(window, 'load', function() {
	// set the right page class
	$('page').addClassName(location.pathname.gsub(/^\/$/, 'home').gsub('/', ' ').strip().gsub(/wir(.+)/, 'wir_spieler'));
	
	// select current tab
    $('menu').select('a').each(function(a) {	
		if (a.href == location.href) a.up().addClassName('selected');
	});
});

function triggerForm() {
	var f = $('form_wrapper'), b = $('form_trigger');
	if (f.visible()) {
		Effect.SlideUp(f);
		b.value = "Ich will auch sprechen!";
	} else {
		Effect.SlideDown(f);
		b.value = "Ich will doch nix schreiben";
	}
}
