$(document).ready(function(){
  // Ajax-ify the download form
  $("div#download_modal form").validate({
    messages: {
      realname: "Please enter your name",
      email: {
        required: "Please enter your email address",
        email: "Your email adddress must be in the format of name@domain.com"
      }
    },
    submitHandler: function(form){
      $(form).ajaxSubmit(function(){
        $("div#download_modal div#form").hide();
        var name = $("div#download_modal input#realname").fieldValue();
        $("div#download_modal").append('<p class="download"><strong>Thank you, '+name[0]+'.</strong> <a href="/downloads/JBOtips.pdf" title="Click here to start download">Click here to start download</a></p>');
      });
    }
  });
  // Setup jqModal
  $("div#download_modal").jqm();
  $("div#download a").click(function(){
    $("div#download_modal").jqmShow();
    return false;
  });
});