 $(document).ready(function(){
	$("#sendmail").click(function(){
		var valid = '';
		var isr = ' נדרש.';
		var name = $("#name").val();
		var cellular = $("#cellular").val();
		if (name.length<1) {
			valid += '<br />שם'+isr;
		}
		if (cellular.length<1) {
			valid += '<br />מספר סלולר'+isr;
		}
		else if (cellular.length!=10 && cellular.length!=9) {
			valid += '<br />מספר הטלפון אינו תקין';
		}
		if (valid!='') {
			$("#response").fadeIn("slow");
			$("#response").html("שגיאה:"+valid);
		}
		else {
			var datastr ='name=' + name + '&cellular=' + cellular;
			$("#response").css("display", "block");
			$("#response").html("שולח את הפרטים .... ");
			$("#response").fadeIn("slow");
			setTimeout("send('"+datastr+"')",2000);
		}
		return false;
	});
});
function send(datastr){
	$.ajax({	
		type: "POST",
		url: "http://www.bdikot.com/theme/Innovation/mail/mail.php",
		data: datastr,
		cache: false,
		success: function(html){
		$("#response").fadeIn("slow");
		$("#response").html(html);
		setTimeout('$("#response").fadeOut("slow")',2000);
	}
	});
}

