var avatars = [ 'http://www.axiomfiles.com/Files/278466/avatar-Animal.jpg', 'http://www.axiomfiles.com/Files/278466/avatar-bender.png', 'http://www.axiomfiles.com/Files/278466/avatar-dalek.png', 'http://www.axiomfiles.com/Files/278466/avatar-Gollum.jpg', 'http://www.axiomfiles.com/Files/278466/avatar-hello-kitty2.png', 'http://www.axiomfiles.com/Files/278466/avatar-snorlaxv.png' ]; // *********************** // Don't change anything below // *********************** $('img[src*="empty-profile.png"]').each(function(){ var rndm = Math.floor( Math.random() * (avatars.length) ); $(this).attr('src', avatars[rndm]); }); $('.gpWidget-officercontacts table.StyledList tbody tr').each(function(){ var rndm = Math.floor( Math.random() * (avatars.length) ); $(this).find('td:first:empty').html('<img align="left" style="height:32px;width:32px;border-width:0px;margin-right:3px;" src="' + avatars[rndm] + '">'); });
<style type="text/css"> .tooltip, .preview, .screenshot { cursor:pointer; } #tooltip, #tooltip2, #preview, #screenshot { color:#dddddd; background:#222222; border: 1px solid #333333; padding:5px; display:none; opacity: 0.9; filter: alpha(opacity=90); text-align:left; border-radius: 1em; -moz-border-radius: 1em; -webkit-border-radius: 1em; } </style> <script src="http://www.axiomfiles.com/Files/258012/tooltip.js" type="text/javascript"></script>