$(document).ready(function() {
  
  $("body").addClass("js-enabled");
    
  // top nav dropdown on hover
  $("#nav-top ul.sub li:last-child a").addClass("last");
  $("#nav-top ul.top li").hover(
    function(){
      $(this).children("ul.sub").slideDown();
    },
    function(){
      $(this).children("ul.sub").slideUp("fast");
    }
  );
  
  // general toggle display
  $(".toggleDisplay", "#content").click(function(){
    var showId = $(this).attr("ref");
    $("#"+showId).slideToggle();
  });
  
});


/* ----- FUNCTIONS ----- */

function getAjaxPath(file) {
  var path = $("base").attr("href");
  return path+"ajax/x-"+file;
}
function getStaticImagePath() {
  var path = $("base").attr("href");
  return path+"static/images/";
}

