window.addEvent('domready', function(){
	$$('.csc-mailform select#mailformIhr_Anliegen').each(function(select){
		select.addEvent('change', function() {
			var val = select.getProperty('value');
			switch(val) {
				case 'Produktbeanstandung':
					change_location('kontakt_produktbeanstandung.html');
					break;
				case 'Fragen/Anmerkungen zu Produkten':
					change_location('kontakt_produkte.html');
					break;
				case 'Fragen/Anmerkungen zu Aktionen/Gewinnspielen':
					change_location('kontakt_aktionen.html');
					break;
				case 'Wo bekomme ich Almette-Produkte?':
					change_location('kontakt_almette_produkte.html');
					break;
				case 'Fragen/Anmerkungen zum Almette-Bauernhof':
					change_location('kontakt_bauernhof.html');
					break;
				case 'Sonstiges':
					change_location('kontakt_sonstiges.html');
					break;
				default:
					change_location('kontakt.html');
					break;				
			}
		});
	});
	
	
});


function change_location(url) {
	window.location.href = url;
}
