// Make Jquery play nice
var $jQ = jQuery.noConflict();

// Show the key for the stats
// status 0 = show 
// status 1 = hide
function jqShowIt( section, status ) {
  $jQ( "#hideKey" + section ).toggle();
  $jQ( "#showKey" + section ).toggle();
  if( 0 == status ) {
    $jQ( "#statKey" + section ).slideDown( "slow" );
  } else {
    $jQ( "#statKey" + section ).slideUp( "slow" );
  }
}
/* Doesn't work -- reevaluate!
$jQ(document).ready(function() {
    $jQ("#hsLdrCon").tabs();
//    $("#hsLdrCon").tabs({ fxAutoHeight: true, fxFade: true, fxSpeed: 'fast' });
});
*/