$(function(){
$("#viewform").click(function(){
        $("#callmeform").slideToggle("slow");
    });

$("#viewform").hover(
  function () {
    $(this).addClass("callmeform_hover");
  },
  function () {
    $(this).removeClass("callmeform_hover");
  }
);

});

function show()
{
     $.ajax({
       type: "GET",
       url: "/callme/index.php",
       data: {cphone: $("#cphone").val(), cname: $("#cname").val(), caddr: $("#caddr").val(), myradio:$(":radio[name=myradio]").filter(":checked").val(), city:$(":radio[name=city]").filter(":checked").val()},
       success: function(html){
           $("#callme_result").html(html);
           setTimeout( function(){ $("#callmeform").slideToggle("slow"); }, 3000);
       }
     });
}

$(document).ready(function(){
    $(".callme_submit").click(function(){
        show();
    });
});
