/* Script to enable hover function */
$().ready(function() {
  $('.hoverable').hover(
    function() {
      $(this).addClass('hovered'); /* On hover add the class 'hovered' and apply the hovered styles */
    }, function() {
      $(this).removeClass('hovered'); /* On mouseout remove the class 'hovered' and reset the styles   */
    }
  );
});
