var addthis_pub=jkiAddThisAccount;
var addthis_config =
{
 
	data_track_linkback: true

}
window.addEvent('domready', function()
{

	var tag = new Element('script');
	tag.set('type','text/javascript');
	
	var protocol = (jkiPath.contains('https://')) ?
		'https://':'http://';
	
	tag.set('src',protocol+'s7.addthis.com/js/250/addthis_widget.js#username='+jkiAddThisAccount);
	$$('head').grab(tag);
	$$('.jkiAddThis').each(function(node){
		
		node.addEvents({
			
			'mouseover' : function()
			{
				
				return addthis_open(this, '', location.href, node.getElement('a').get('title'));
				
			},
			
			'mouseout' : function()
			{
				
				addthis_close();
				
			},
			
			'click' : function()
			{
				
				return addthis_sendto();
				
			}
			
			
		});
		
	});

});

