////
//// support code for NSE home page
////

//
// required:
//   jquery.js (version 1.3.2+) (see jquery.com)
//


$(document).ready(function(){

  ////
  //// set links to open hidden content
  ////

  $("div.openable").each( function() {
    $(this).children().not(".opener").hide();
    $(this).children(".opener").wrapInner("<a href='#abstract'></a>").find("a").click( function() {
      $(this).parents(".openable").children(".opener").hide();
      $(this).parents(".openable").children().not(".opener").show();
      return(false);
    });
  });
});
