$(function() {
	$('#site_counter').css('display', 'none');
	
	// меняем span на ссылку
	$('.otherlink[title]').each(function(){
		var aEl = document.createElement('A');
		aEl.innerHTML = this.innerHTML;
		aEl.href = this.title;
		aEl.target = '_blank';
		
		$(aEl).insertBefore(this);
		$(this).remove();
	});
});
