﻿$(function() {
	/* Datumsauswahl */
	$('#online-buchung .date-pick').datePicker().val(new Date().asString()).trigger('change');
	$('#online-buchung .date-pick').dpSetPosition($.dpConst.POS_TOP, $.dpConst.POS_RIGHT);

	if (ort2 != "") {
		document.getElementsByName('ort_bu')[0].value = ort2;
		document.getElementsByName('ort_bu')[0].text = ort2;
	}

	/* Kinder */
	$('#children').css('display', 'block');

	$('#children').change(function() {
		var str = '';
		children = $('#children option:selected').val();

		$('#child1').css('display', children > 0 ? 'block' : 'none');
		$('#child1')[0].selectedIndex = children > 0 ? $('#child1')[0].selectedIndex : 0;
		$('#child2').css('display', children > 1 ? 'block' : 'none');
		$('#child2')[0].selectedIndex = children > 1 ? $('#child2')[0].selectedIndex : 0;
		$('#child3').css('display', children > 2 ? 'block' : 'none');
		$('#child3')[0].selectedIndex = children > 2 ? $('#child3')[0].selectedIndex : 0;
	})
	.change();

	/* Tomas */
	$('form#tomas_quick').submit(function() {
		var ort = $('#cities option:selected').val();
		ort = ort.replace(/Ä/, '%C4');
		ort = ort.replace(/ä/, '%E4');
		ort = ort.replace(/Ö/, '%D6');
		ort = ort.replace(/ö/, '%F6');
		ort = ort.replace(/Ü/, '%DC');
		ort = ort.replace(/ü/, '%FC');
		ort = ort.replace(/ß/, '%DF');
		$('#city').val(ort);

		datum = $('#date').val();
		$('#date_day').val(datum.substr(0,2));
		datum_monat=parseInt(datum.substr(3,2), 10)-1;
		$('#date_month').val(datum_monat);
		$('#date_year').val(datum.substr(6,4));
	})
});

