$(document).ready(function() {
  
  // remove 'Actions' box, if empty (jroller plugin)
  if($('#sf_admin_actions_menu_list').length != 0 && $('#sf_admin_actions_menu_list').children().length == 0)
    $('.sf_admin_actions_block').hide();
  
  // change 'Actions' box to a simple button, if it has only one option
  if($('#sf_admin_actions_menu_list').length != 0 && $('#sf_admin_actions_menu_list').children().length == 1)
    $('.sf_admin_actions_block').html($('#sf_admin_actions_menu_list').html()).addClass('sf_admin_td_actions fg-buttonset fg-buttonset-single');
  
  // change the 'Edit' text
  $('.ui-jqgrid-title').hide();
  
  var changeEdit = function()
  {
    $('.ui-jqgrid-title').hide();
  }
  
  setTimeout(changeEdit, 2000);
  
});
