$(document).ready(function(){ 
    
    // Remove the margin for even list items
    $('ul.authors li:nth-child(even)').css("margin-right", 0);
    
    // Remove all
    $("ul.authors").find("a.name").css("display", 'none');

    // Hover effect
    $("ul.authors").find('li').hover(function () {
    	// on hover
    	$(this).find("a.name").css("display", 'block');
      },function () {
    	// roll out 
    	$(this).find("a.name").css("display", 'none');
      }); 
    
});
