﻿$(document).ready(function() {
    $('#selectable .ui-state-default').mouseover(function() {
        $(this).addClass('hover');
    });

    $('#selectable .ui-state-default').mouseout(function() {
        $(this).removeClass('hover');
    });
});	
