$(document).ready(function() {
  $(".jump_box").change(function(e) {
    url = $(e.target).attr("value");
    if(url.length > 0) {
      window.location = url;
    }
  });

  // form validations
  $("#apply").validate({
    rules: {
      title: "required",
      uk_work_permit: "required",
      hold_passport: "required",
      annual_salary: "required",
      driving_license: "required",
      cv_upload: "required"
    },
    submitHandler: function(form) {
      form.submit();
      $($(form).find("input[type=image]")).replaceWith("<p><strong>Thank you</strong><br/>Please wait while we submit your application</p>");
    }
  });
  
  $("a.popup").click(function(e) { 
  	newwindow=window.open($(this).attr("href") + "?plain=1",'name','height=440,width=570,scrollbars=yes');
  	if (window.focus) {newwindow.focus()}
    return false;
  });
});