$(document).ready(function() {
  $("#mainmenu li").click(function () {
    $("li").removeClass("current_page_item");
    $(this).addClass("current_page_item");
  });
  
  $("#submenu li").click(function () {
    $("li").removeClass("current_page_item");
    $(this).addClass("current_page_item");
  });

  $('#submenu table').each(function() {
    width = $(this).width();
    widthHalf = width/2;
    $(this).css("margin-left", width - (width+widthHalf));
    $(this).css("left", "50%");
  });

  $("#topbar").click(function() {
    document.location.href=$('#topbar').attr('data-url');
  });
  
  $("#transaktie_topbar").click(function() {
	  document.location.href='http://transferro-website.dev/frontend_dev.php/transaktie';
  });
});
