I have added the addthis tool box to my wordpress loop, it works great the only problem is that when I click on a button to share it always opens in a new tab not a small nice looking popup window.
my addthis loop code is:
<div class="addthis_toolbox addthis_default_style addthis_32x32_style">
<a class="addthis_button_facebook" addthis:url="<?php the_permalink(); ?>" addthis:title="<?php the_title(); ?>"></a>
<a class="addthis_button_twitter" addthis:url="<?php the_permalink(); ?>" addthis:title="<?php the_title(); ?>"></a>
<a class="addthis_button_google" addthis:url="<?php the_permalink(); ?>" addthis:title="<?php the_title(); ?>"></a>
<a class="addthis_button_reddit" addthis:url="<?php the_permalink(); ?>" addthis:title="<?php the_title(); ?>"></a>
<a class="addthis_button_stumbleupon" addthis:url="<?php the_permalink(); ?>" addthis:title="<?php the_title(); ?>"></a>
<a class="addthis_button_tumblr" addthis:url="<?php the_permalink(); ?>" addthis:title="<?php the_title(); ?>"></a>
</div>
and my script code I placed in my header file:
<script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#pubid=ra-4f95a674603e5921"></script>
<script type="text/javascript">
var addthis_share = {ui_open_windows : true };
</script>