$(document).ready(function(){
  $('button#wishsubmit').click(function(){
    
    var abc = $("input#iphone:checked").val()

    $.post('/actions.php',
      {
        appwishnew : $("textarea#appwishnew").val(),
        appcost : $("select#appcost").val(),
        registerme : $("input#registerme:checked").val(),
        email : $("input#email").val(),
        displaymyemail : $("input#displaymyemail:checked").val(),
        website : $("input#website").val(),
        iphone : $("input#iphone:checked").val(),
        ipad : $("input#ipad:checked").val(),
        blackberry : $("input#blackberry:checked").val(),
        android : $("input#android:checked").val(),
        nokia : $("input#nokia:checked").val(),
        facebook : $("input#facebook:checked").val(),
        other : $("input#other:checked").val(),
        androiddesc : $("input#androiddesc").val(),
        otherdesc : $("input#otherdesc").val(),
        nokiadesc : $("input#nokiadesc").val()
      },
      function(result) {
        $('div#message').html(result).fadein('slow', function(){
          $('form#wishform').slideUp();
        });
        //alert('result is' + result)
      }
    );

    return false;
  });
});
