var addthis_pub="resonance";
window.addEvent('domready', function()
{

	var tag = new Element('script');
	tag.set('type','text/javascript');
	tag.set('src','http://s7.addthis.com/js/152/addthis_widget.js');
	$$('head').grab(tag);
	$$('li.jkiAddThis').each(function(node){
		
		node.addEvents({
			
			'mouseover' : function()
			{
				
				return addthis_open(this, '', location.href, node.get('title'));
				
			},
			
			'mouseout' : function()
			{
				
				addthis_close();
				
			},
			
			'click' : function()
			{
				
				return addthis_sendto();
				
			}
			
			
		});
		
	});

});