﻿/* -----------------------------------------------------------------------------
TTG

version:   20.06.2008
author:    sven hantschack
email:     hantschack@webit.de
----------------------------------------------------------------------------- */

$(function(){

	/* =DATUMSAUSWAHL
----------------------------------------------------------------------------- */

	$('.date-pick').datePicker().val(new Date().asString()).trigger('change');
	$('.date-pick').dpSetPosition($.dpConst.POS_TOP, $.dpConst.POS_RIGHT);

	$('#children').css("display","block");

	if (ort2 != "") {
		document.getElementsByName("ort_bu")[0].value  = ort2;
		document.getElementsByName("ort_bu")[0].text  = ort2;
	}
	
	$('#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();

	$('form#tomas_quick').submit(function () {
		
		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));
		
	})
	
});
