$(document).ready(function() {
  $(".hidden-js").hide();
  
  $(".hover .over").css("display","block").hide();
  $(".hover").hover(
    function() {
      $(this).children().hide();
      $(".over",this).show();
    },
    function() {
      $(this).children().hide();
      $(this).children().not(".over").show();
    }
  );
});
