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

