$(document).ready(function() {
  /* Setup a global hover */
  $(".hover").hover(
    function() {
      $(this).children().not(".over").hide();
      $(".over",this).show();
    },
    function () {
      $(this).children().not(".over").show();
      $(".over",this).hide();
    }
  );
  
  /* Hide via javascript (as opposed to CSS) */
  $(".hidden-js").hide();
  
  /* Supress typographic widows */
  $.jqwidont.auto();
});

