
	$(function(){

		// AJAXのキャッシュOFF
		$.ajaxSetup({ cache: false });

		// リンクの点線除去
		$('a').focus( function(){ if(this.blur)this.blur(); });

		// コメント内のリンク
		$('div.content a[href^="http"]').addClass('blank');
		$('a[href$=".pdf"]').addClass('blank');
		// 別窓
		$('a.blank').live('click', function(){ this.target = "_blank"; });

		// 画像ロールオーバー
		$('img.imgover').rollover('_on');
		// 画像ロールオーバー(点滅)
		$('img.imgfade').live('mouseover', function () {
			$(this).animate({opacity:'0.6'}, {duration: 500} );
			$(this).animate({opacity:'1.0'}, {duration: "normal"});
		});

		// ポップアップ
		$('a.lightpop').lightpop({overlayBgColor:'#000', overlayOpacity:0.7}, {}, '', '/img/lightpop/');
		$('a.htmlpop').lightpop({overlayBgColor:'#000', overlayOpacity:0.7}, {grouping:false}, '', '/img/lightpop/');

	});

	function to_object (json_str) {
		return eval('(' + json_str + ')');
	}

