(function() {
  var setRighthandPane;

  setRighthandPane = function() {
    var content, contentHeight, sidebar, sidebarHeight;
    content = $("#content");
    sidebar = $("#sidebar");
    if (content.length > 0 && sidebar.length > 0) {
      contentHeight = content.height();
      sidebarHeight = sidebar.height();
      if (contentHeight > sidebarHeight) return sidebar.height(contentHeight);
    }
  };

  $(document).ready(function() {
    var imageLinks;
    if ($.fn.lightBox) {
      imageLinks = $("#image-gallery a.lightbox");
      imageLinks.lightBox({
        imageLoading: '/images/lightbox-ico-loading.gif',
        imageBtnPrev: '/images/lightbox-btn-prev.gif',
        imageBtnNext: '/images/lightbox-btn-next.gif',
        imageBtnClose: '/images/lightbox-btn-close.gif',
        imageBlank: '/images/lightbox-blank.gif'
      });
    }
    if (window.location.pathname === "/") $("body").addClass("index");
    $("#menu a[href$='/local-businesses/']").attr("href", "#");
    $("#menu a[href$='/functions/']").parent().hide();
    return setTimeout(setRighthandPane, 1000);
  });

}).call(this);

