$(document).ready(function() {
  var found_nav_item = false;
  $(document.body.className.split(" ")).each(function() {
    var theA = $('#in_' + this);
    if(theA.length > 0) {
      $("#interior_navigation .cursor").css("top", theA.position().top);
      found_nav_item = true;
      return;
    }
  });
  if(!found_nav_item)
    $("#interior_navigation .cursor").hide();
  
});