OK the results of my script aren't exactly producing the answer I am looking and the variable is coming back the opposite of what I am looking for:
//REVISED:This is in the mouseOut of .hover()
Here is my function:
$(".about,.activeAbout").hover(
  function () {
    $('#dropInvestments').css( "left","-9999px" );
    $('#dropMedia').css( "left","-9999px" );
    $('#dropAbout').css( "left","415px" );
    $('#aboutTitle').addClass("aboutTitleActive").removeClass("aboutTitle");
  }, 
      function () {
      $pageLoc = document.location.pathname.split('/about/');
      alert($pageLoc);
      if (document.location.pathname == $pageLoc) 
    {
      $('#aboutTitle').addClass("aboutTitle").removeClass("aboutTitleActive");
    }
}
);
Here is the pathname:
wga/x3/about/history.html
What i want is to only do the class change if the current page is not in the about folder/directory. Any thoughts?
Using split takes out the about and returns the pathname without it...