$(document).ready(function() {  

    // get the current url
    var path = location.pathname.substring(1); 

    // defining the anchors with a href that matches the current url
    var $selected_item = $('ul.toolbarnavigation li a[@href$="' + path + '"]'); 

    // setting the selected menu item'class as active
    $selected_item.addClass('current'); 

});         


/*$(document).ready(function() { 
$('.members .search_listing .search_listing_icon').hover(function() {   
  $(this).find('.search_listing_info').addClass('open');    
 },function() {
  $(this).find('.search_listing_info').removeClass('open');      
});    
});        */       



  