﻿$(document).ready(function(){
	$(".accordion h4").click(function(){
		$(this).next("div")
			.animate({ height: 'toggle'} , "normal", 'swing')
			.siblings("div:visible").slideUp("normal");
		$(this).toggleClass("active");
		$(this).siblings("h4").removeClass("active");
	});
	$("form input:checkbox.main").change(function(){
		$(this).closest("td").find(".accordion input:checkbox").attr("checked", $(this).attr("checked"));
		$(this).closest("td").find(".accordion input:checkbox").attr("disabled", $(this).attr("checked"));
	});
	
	$("form#ozveme-se").submit(function() {
	  if ($(this).find("#f_phone").val() == "" && $(this).find("#f_email").val() == "") {
	   alert("Vyplňte, prosím, e-mail nebo telefon.");
	   return false;
	  }
	   return true;
	});

	$("form#konfigurator").submit(function() {
	  if ($(this).find("#f_konf_phone").val() == "" || $(this).find("#f_konf_email").val() == "") {
	   alert("Vyplňte, prosím, e-mail nebo telefon.");
	   return false;
	  }
	   return true;
	});
	
	$('<input type="hidden" name="f_kontrola" value="38">').insertBefore("div#kontrola");
	$("div#kontrola").remove();
	

});

