jQuery.fn.extend({
  overlay:  function(options)
            {
              var id = options['id'] ? options['id'] : null;
              var position = jQuery(this).position();
              
              if(!position)
              {
                return false;
              }
              
              var height = jQuery(this).height();
              var left = position.left;
              var top = position.top;

              var title = jQuery(this).attr('title');
                
              jQuery(this).after('<div class="overlay ' + id + '" style="position: absolute; left: ' + left + 'px; top: ' + (top+height-44) + 'px">' + title + '</div>');
              
              var item = $(this).parent();
                            
              item.find('div.overlay').mouseover(function() {
                item.find('img').css('border-color', '#CC2A41');
              });
              
              item.find('div.overlay').mouseout(function() {
                item.find('img').css('border-color', '');
              });
            }
});