//jQuery(document).ready(function() {
	/* マウスオーバーした時 */
//	jQuery("h2#arishima a").mouseover(function(){
//		jQuery("#hitokoto").css("display", "block");
//		jQuery("h2#arishima a").css({ backgroundPosition:"bottom" });
		//jQuery("#hitokoto").show();
		/* マウスが離れた時 */
//	}).mouseout(function(){
//		jQuery("#hitokoto").css("display", "none");
//		jQuery("h2#arishima a").css({ backgroundPosition:"top" });
		//jQuery("#hitokoto").hide();
		/* クリックした時 */
//	}).click(function(){
//		location.href = "#";
//		return false;
//	});
//});

function showarishima(id){
	if(document.getElementById){
		document.getElementById(id).style.display = "block";
		document.getElementById('arishimakun').style.backgroundPosition = "bottom";
	}
}
function hidearishima(id){
	if(document.getElementById){
		document.getElementById(id).style.display = "none";
		document.getElementById('arishimakun').style.backgroundPosition = "top";
	}
}
