I am having a problem with my anchor tag from a separate page to the designated page, loading then bumping to the bottom of the page. Is there a fix for this? See link for complete code.
jQuery
<script>
jQuery(document).ready(function() {
var allPanels = jQuery('.accordion > dd').hide();
jQuery('.accordion > dt > a').click(function( e ) {
e.preventDefault(); // don't use return false;
allPanels.slideUp('normal');
jQuery(this).parent().next().slideDown('normal');
});
jQuery(location.hash).show();
});
</script>