$(document).ready(function() {
  $('.tabbed_content .tabs a').click(function() {
    id = $(this).attr('id');
    $('.tabbed_content .content').hide();
    $('.tabbed_content .content#'+id+"_content").show();
    window.location.hash = id;
    $('.tabbed_content .tabs a').removeClass('current');
    $(this).addClass('current');
    return false;
  });
  if (window.location.hash != null) {
    hash = window.location.hash.substring(1);
    content = $('.tabbed_content .content#'+hash+"_content");    
    if (content.length > 0) {
      $('.tabbed_content .content').hide();
      content.show();
      $('.tabbed_content .tabs a').removeClass('current');
      $("a[id="+hash+"]").addClass('current');
    };
  };
});