﻿$(document).ready(function() {
  // this block hides empty li tags, needed for IE
  $(".more-left-margin").each(function() {
    var value = $.trim($(this).text())
    if (value == "") {
      $(this).hide();
    }
  });
});

