// JavaScript Document
$(function(){
  // Document is ready
  $('.tab_head').click(function() { 
	  $('#tab_body_' + $(this).attr('id').substring(9)).toggle();
  }).dblclick(function() {
	  $('#tab_body_' + $(this).attr('id').substring(9)).siblings("tbody").hide();
	  $('#tab_body_' + $(this).attr('id').substring(9)).show();
  });
});

