$(document).ready(function(){

  $("ul#gods li").hide();

  var current_god = null;

  $("ul#gods-nav a").click(function() {
    if(current_god) current_god.hide();
    current_god = $("ul#gods li#" + this.id);
    current_god.show();
    return false;
  })
  
  $("ul#gods-nav a#ganesha").click();
  
  $("div#biog h3").append(" - <a href='#' id='less'>&laquo; Less</a>");
  $("div#biog h3").append(" <a href='#' id='more'>More &raquo;</a>");  
  $("a#more").hide();
  $("a#less").click(function(){
    $(this).hide();
    $("div#detail").hide();
    $("a#more").show()
    return false;
  })
  $("a#more").click(function(){
    $(this).hide();
    $("div#detail").show();
    $("a#less").show();
    return false;
  })

  
});
