////////////////////////////////////////////////////////////////////////////////
//
//	[ファイル名]	sitemap.js
//	
//	[文字コード]	utf-8
//	
//	[概要]	
//
////////////////////////////////////////////////////////////////////////////////
(function(){
	
	
	
	
	
	$(function(){
		$("h3 a").each(function(){
			$(this).hover(
				function(){
					$(this.parentNode).addClass("hover");
				},
				function(){
					$(this.parentNode).removeClass("hover");
				}
			);
		});
	});
	
	
	
	
	
})()
