// hover class toggles in app panel
jQuery(function() {
    jQuery('.ui-state-default').hover(
            function(){ jQuery(this).addClass('ui-state-hover'); },
            function(){ jQuery(this).removeClass('ui-state-hover'); }
    );
});

