
$(document).ready(function() {

	$("#SiteHeader_CallMe").click(function() {

		$("#CallMe_PhoneNo_Input").attr("value","")
		$("#SiteHeader_CallMe").animate({ 
			top: "20px"
		}, 250, function() {
			$("#CallMe_PhoneNo_Input").focus();
		});

	});

	$("#CallMe_Button").click(function() {

		phoneNo = $("#CallMe_PhoneNo_Input").attr("value");

		validChars = "0123456789";
		checkResult = true;

		for (i = 0; i < phoneNo.length && checkResult == true; i++) {
			c = phoneNo.charAt(i);
			if (validChars.indexOf(c) == -1) {
				checkResult = false;
			}
		}

		if (phoneNo.length == 0 || checkResult == false) {

			alert("Indtast venligst gyldigt telefonnr.");

		} else {

			$.getJSON("/callme.asp?phoneNo=" + phoneNo, function(data) {
				
				if (data.status == "ok")
				{
					alert("Tak for din henvendelse. Du vil blive ringet op hurtigst muligt!");

					$("#SiteHeader_CallMe").animate({ 
						top: "104px"
					}, 250);
					$("#CallMe_PhoneNo_Input").attr("value","");

				}
			
			});

		}

	});


});

