$(function() {

  // Replace the standard image with two new ones. One if for larger screens
  var brand = $("a.navbar-brand");
  brand.css("padding", "8px");
  var img = brand.find("img");
  var oldSrc = img.attr('src');
  //img.remove();

  //var newLargeImage = $("<img class='twp-large-menu-image visible-lg visible-md' />")
  //newLargeImage.attr("src", "https://demo.easywebdocs.com/Content/CustomHandler.ashx?f=WebDoc.png");
  //newLargeImage.attr("height", "75px");
  //newLargeImage.css('top', "-20px");
  //newLargeImage.css('margin-right', "40px");
  //newLargeImage.css('position', "relative");
  //brand.append(newLargeImage);

  //var newSmallImage = $("<img class='twp-small-menu-image visible-sm visible-xs' />")
  //newSmallImage.attr("src", oldSrc);
  //brand.append(newSmallImage);
});

function changeLogoOnResize() {
   img.removeAttr("style");
   img.css('display','');
   img.css('height','45px');
}