$(document).ready(function(){
/*
  $("img.small").mouseover(function(){
    $(this).css("z-index", "100");
    $(this).css("height", "auto");
    if (parseInt($(this).width()) > 600) {
      $(this).css("width", "600px");
    }
    $(this).css("border", "1px solid black");
    $(this).parents(".imgLetterBox").css("overflow", "visible");
  })
  
  $("img.small").mouseout(function(){
    $(this).css("border", "none");
    $(this).css("height", "100px");
    $(this).css("z-index", "0");
    $(this).parents(".imgLetterBox").css("overflow", "hidden");
  })
  */
});

