jQuery(document).ready(function() {
    $('input[placeholder]').placeholder(); // Placeholders for fields in browsers that don't support it yet
    $(".dropdown").hover(
      function() {
        $(this).toggleClass("active");
      }
    );
    $("#flowchart li").hover(
      function() {
        this_id = $(this).attr("id");
        var id = this_id.split("_");
        $('#flowchart .active').removeClass("active");
        $("#step_" + id[1] + "_img").toggleClass("active");
        $("#step_" + id[1] + "_descr").toggleClass("active");
      }
    );
    var $scrollingDiv = $("#job_reasons");
    $(window).scroll(function() {
      pos = $(window).scrollTop();
      margin = 630;
      if(pos > margin) {
        pos = margin;
      }
      $scrollingDiv
        .stop()
        .animate({"marginTop":  pos + "px"}, "slow" );
    });

    // Anti-spam for contact form
    $("#contact_check").attr("value", "no");
});
TopUp.images_path = "/images/top_up/";
TopUp.addPresets({
  ".top_up": {
    resizable: 0
  },
  ".shaded": {
    shaded: 1,
    effect: 'appear',
    overlayClose: 1,
    resizable: 0
  }
});
