$(document).ready(function(){
	if(countlink) {
		if(location.href.match(/https?:\/\/([^\/]+)\/neta\/show/)) {
			var permalink = location.href.replace(/https?:\/\/([^\/]+)\/neta\/show\//, '');
			permalink = 'neta_show_' + permalink.replace(/\/.+/, '').replace(/\?.+/, '');
			$('#mainContents a').each(function() {
				if($(this).parents('#detailPageBlogList').length) {
					return;
				}
				if($(this).attr('href') && $(this).attr('href').charAt(0) != '/' && !$(this).attr('href').match(/(blog-neta\.cocolog-nifty\.com|googleads\.g\.doubleclick\.net)/)) {
					$(this).mousedown(function() {
						countlink('conetama', permalink, $(this).attr('href'));
					});
				}
			});
		}
		if(location.href.match(/https?:\/\/([^\/]+)\/tag\/show/)) {
			var permalink = location.href.replace(/https?:\/\/([^\/]+)\/tag\/show\//, '');
			permalink = 'tag_show_' + permalink.replace(/\/.+/, '').replace(/\?.+/, '');
			$('#mainContents a').each(function() {
				if($(this).attr('href') && $(this).attr('href').charAt(0) != '/' && !$(this).attr('href').match(/blog-neta\.cocolog-nifty\.com/)) {
					$(this).mousedown(function() {
						countlink('conetama', permalink, $(this).attr('href'));
					});
				}
			});
		}
		$('#subContents a').each(function() {
			if($(this).attr('href')) {
				$(this).mousedown(function() {
					countlink('conetama', 'subContents', $(this).attr('href'));
				});
			}
		});
	}
});
