$(document).ready(function(){

	// サイドバーのリンクリストのトグル効果
	$(".side h2").hover(function(){
		$(this).css("cursor","pointer"); 
		$(this).css("opacity", "0.8");
	},function(){
		$(this).css("cursor","default");
		$(this).css("opacity", "1.0");
	});
	$(".side h2").click(function(){
		$(this).next().slideToggle("slow");
	});

});

// BackgroundImageCache
try {
	document.execCommand('BackgroundImageCache', false, true);
} catch(e) {}