$(document).ready(function(){
$('.box .rating').hover(
      function () {
        $(this).children('p').toggle();
      },
      function () {
        $(this).children('p').toggle();
      }
    );
});
