jQuery(document).ready(function()
{
	jQuery('a.abus').click(function()
	{
		var abus = this;
		jQuery.get(jQuery(this).attr('href'),function(data)
		{
			jQuery(abus).parent().html(data);
		});
		
		return false;
	});
});
