$(document).ready(function(){

  // append "more" label to genre title
  $(".itemTitleContainer h4").hover(
    function () {
      $(this).append($("<span>[more...]</span>"));
    }, 
    function () {
      $(this).find("span:last").remove();
    }
  );
  
});
