/*
 * Postal Search APIs & Solutions
 * Copyright(C) 2007 LEARNING RESOURCE LAB.
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 */
jQuery(function($) {

var href = location.href.split('#')[0];
$('a').each(function() {
  if (href == this.href)
    $(this)
     .before(this.childNodes)
	 .remove();
});

});
