$(function() {
	$("#contentmiddle h1:first").css("margin-top","0px");
});

$(function(){
	if ($('.date-pick').length != 0)
	{
		$('.date-pick').datePicker(
			{
				startDate: '01/01/2011',
				endDate: '01/12/2011',
				autoFocusNextInput: true
			}
		);	
	}
	
	/* form for "guided-tours" */
	$("#mailformInvoice_Name").hide();
	$("#mailformInvoice_Name").prev("label").hide();
	$("#mailformInvoice_Address").hide();
	$("#mailformInvoice_Address").prev("label").hide();
	$("#mailformInvoice_Zip_Code").hide();
	$("#mailformInvoice_Zip_Code").prev("label").hide();
	$("#mailformInvoice_City").hide();
	$("#mailformInvoice_City").prev("label").hide();
				
	$("#mailformForm_of_Payment").change(function() {
		if ($(this).val() == "Per Rechnung" || $(this).val() == "Invoice")
		{
			$("#mailformInvoice_Name").show();
			$("#mailformInvoice_Name").prev("label").show();
			$("#mailformInvoice_Address").show();
			$("#mailformInvoice_Address").prev("label").show();
			$("#mailformInvoice_Zip_Code").show();
			$("#mailformInvoice_Zip_Code").prev("label").show();
			$("#mailformInvoice_City").show();
			$("#mailformInvoice_City").prev("label").show();			
		}
		else
		{
			$("#mailformInvoice_Name").hide();
			$("#mailformInvoice_Name").prev("label").hide();
			$("#mailformInvoice_Address").hide();
			$("#mailformInvoice_Address").prev("label").hide();
			$("#mailformInvoice_Zip_Code").hide();
			$("#mailformInvoice_Zip_Code").prev("label").hide();
			$("#mailformInvoice_City").hide();
			$("#mailformInvoice_City").prev("label").hide();		
		}	
	});
});
