/*****************************
 * (c)ウェブシステムズ
 *****************************/

$(function()
{
	$('a').each(function(){
		if ($(this).attr('target') == '_blank') {
			$(this).click(function(){
				var id = $(this).attr('class');
				$.ajax({
					url: './?action=get-cnt&id='+id,
					dataType: 'script'
				});
			});
		}
	});

	$('div.advs').each(function(){
		var id = $(this).attr('class').match(/(adv_[0-9]+)/).pop();
		if (id) {
			$('a', $(this)).click(function(){
				$.ajax({
					url: './?action=get-cnt&id='+id,
					dataType: 'script'
				});
			});
		}
	});
});

