﻿$(document).ready(function(){
    var hcolor = "#30536C";
    $('#submit').click(function(event) {
    event.preventDefault();
    if(!$('#caller_phone').val().length){
        $('#caller_phone').animate({ backgroundColor: hcolor}, "fast").animate({ backgroundColor: "#1C2F3C"}, "slow");
        $('#caller_phone').focus();
        return false;
     }
     $.post("assets/script/script.aspx?mode=talklivenow", {
        phone: $('#caller_area').val()+"-"+$('#caller_phone').val()
       ,name: $('#name').val()
       ,email: $('#email').val()
       ,time2Call: $('select option:selected').val()
       }, function(data){
        if(data != "True"){
            window.location = "TalkLiveNowAfter.htm";
        }else{
            $('form').submit();
        }
       });
    });
});