$(document).ready(function(){
  
  /**
   * set zindex on action buttons
   */
  $('div.selectActionButt').each(function(index){
    
    $(this).css('z-index', $('div.selectActionButt').length - index);
    
  });
  
  /*
    select an action functionality
  */
  $('div.selectActionButt').hover(
    
    function(){
      
      $(this).find('ul').show();
      
    },
    function(){
      
      $(this).find('ul').hide();
      
    }
    
  );
  
});
