$(document).ready(function() {
	$('#pagecontent span').each(function(){
		if(this.id.substr(0,4) == 'clbr')
		{
			$(this).css({'color' : '#2277bb', 'cursor' : 'pointer'});
			$(this).hover(
				function(){
					$(this).css({'color' : '#8c8c8c', 'text-decoration' : 'underline'});
				},
				function(){
					$(this).css({'color' : '#2277bb', 'text-decoration' : 'none'});
				}
			);
			$(this).click(function(){
				strLoc	=	document.location  + '';
				path	=	'./';
				if(strLoc.indexOf('.htm') != -1)
					path	=	'.' + path;

				$.ajax({
					type		: 	'POST',
					url			: 	path + 'phpBBAddons/index.php',
					data		: 	'action=clbr&id=' + this.id.replace('clbr', ''),
					dataType	: 	'json', 
					success	: 	function(ret){
						if(ret.url != '')
							document.location = ret.url;
					}
				});
			});
		}
	});
});
