$(document).ready(function(){ 

  banner_h = $("#Banners").height();
  content_h = $("#Content").height();
  
  $("#LargeRoundedBlock").css('height', (banner_h > content_h ? banner_h : content_h));

  $(".vacancy_link").click(function(){
    id = $(this).attr("id");
    vacancy = $("#vacancy_" + id);

    if (vacancy.css("display") == 'none') {
      vacancy.animate({height: "show", opacity: "show"}, "slow");
    } else {
      vacancy.animate({height: "hide", opacity: "hide"}, "slow");
    }

    return false;
  });
  
  $(".vacancy_form").submit(function(){
    var id = $(this).attr("id").match(/\d+/);

    $("#vacancy_form_" + id).ajaxSubmit({ 
      // $.ajax options
      complete: function(msg) {
        $("#form_container_" + id).html(msg.responseText);
      }
    });
    return false;
  });

});





