
tmpImage = new Image();
tmpImage.src = '/images/loading.gif';



$(document).ready(function(){


	$("#formular").submit(function(){

	
		if ( $("#phone").val() == '') {
			alert("Musíte na seba zadať kontakt! (telefón alebo e-mail)");
			$("#phone").focus();
		}

		else {
			showLoading();

			$.ajax({
				type: "POST",
				url: "/js/sendmail.php",
				data: $(this).serialize(),
				error: function(XMLHttpRequest, textStatus, errorThrown){
					alert("CHYBA: " + textStatus);
				},
				success: function(msg){
					hideLoading();
					$("#formular").html('<br /><br /><img src="/images/icon_ok.png" style="vertical-align:middle;margin:0 20px;" alt="" /><div style="color: darkgreen; font-weight: bold; margin-bottom: 70px; font-size: 17px; line-height: 165%; margin-top: 10px;">Vaša požiadavka bola úspešne odoslaná!<br />Budeme Vás kontaktovať.</div>');
				}
			});
		}

		return false;
	}); // form


});




function showLoading() {
  document.getElementById('submitbtn').style.display = 'none';
  document.getElementById('loading').style.display = "";
  return true;
}
function hideLoading() {
  document.getElementById('submitbtn').style.display = 'block';
  document.getElementById('loading').style.display = "none";
  return true;
}



