// JavaScript Document

 $(document).ready(function() {
  $(".boxgrid a.box").hover(
  function () {
    $(this).append($("<div class='playme png_bg'></div>"));
  }, 
  function () {
    $(this).find("div.playme").remove();
  }
);

 });

