// -*- coding:utf-8 -*-

$(document).ready(function(){


        
 
    $(".image-label").hover(
      function () {
	  $(this).find("img.release-image-label").show();
      }, 
      function () {
        $(this).find("img.release-image-label").hide();
      }
    );
      


});
