$(document).ready(function() {  
  if(locid == 'image') {
    $("#info-comments").css("display", "none");
    if(location.hash == "#infcom") {
      $("#switcher").html("IMAGE").addClass("current");
      $("#img-container").css("display", "none");
      $("#info-comments").css("display", "block");
    }
    $("#comForm").validate();
    $(document).bind("keydown", {combi:"left", disableInInput: true}, function() {
        if(previd > 0) window.location = "http://glimpseatlife.ca/pblog/image/" + previd;
      }     
    );
    $(document).bind("keydown", {combi:"right", disableInInput: true}, function() {
        if(nextid <= lastid) window.location = "http://glimpseatlife.ca/pblog/image/" + nextid;
      }     
    );
      $("#switcher").click(function() {
        if($("#switcher").html() == "DETAILS") {
          $("#switcher").html("IMAGE").addClass("current");
          $("#info-comments").slideToggle();
          $("#img-container").slideToggle();
        } else {
          $("#switcher").html("DETAILS").removeClass("current");
          $("#info-comments").slideToggle();
          $("#img-container").slideToggle();
        } 
      }) 
  }
});