
jQuery(document).ready(function() {
 // hides the hobby div as soon as the DOM is ready
  jQuery('#attorney-hobby').hide();
 // shows the slickbox on clicking the noted link
  jQuery('#meet').click(function() {
    jQuery('#attorney-hobby').show();
    jQuery('#attorney-professional').hide();
    return false;
  });
  
 // hides the slickbox on clicking the noted link
  jQuery('#workwith').click(function() {
    jQuery('#attorney-hobby').hide();
    jQuery('#attorney-professional').show();
    return false;
  }); 

/*
 * <nolink> fix
 */
  jQuery("a[href$='/%3Cnolink%3E']").attr('href', '#');
  
  // replace separators
  //jQuery("a[hrefjQuery='/%3Cseparator%3E']").each(function(index) {
  //  jQuery(this).replaceWith("<span class='separator'><hr></span>");
  //});

});


