﻿$(document).ready(function() {
  // Kleur menu item oranje als het huidige categorie is.
  var menulink = window.location.href;
  $("#menu a").each(function() {
    if (menulink.indexOf(this.href) > -1) {
      $(this).parent().addClass("active");
    }
  });

  //$("#wrapper").css("height", $(document).height()-5+ "px" )
});

function toggleTab(tabid,object) {
  $(object).parent().attr("class", "selected_" + tabid);
  $(".content_box_content").hide();
  $("#content" + tabid).show();
}

function SwitchStep(fromStep, toStep) {
  $("#Stap_" + fromStep).hide();
  $("#Stap_" + toStep).show();
}



