var addThis	= {

	init: function()
	{
		$('.addThis').each(function()
		{
			var $this	= $(this);

			$.post(config.$baseURL + 'ajax/addthis/',
			{
				url		: $this.find('.url').html(),
				title	: $this.find('.title').html()
			},
			function(response)
			{
				if(response.status == 'ok')
				{
					$this.html(response.response);
				}
			},
			'json');
		});
	}
};

$(document).ready(addThis.init);
