$(function(){
	// フィルタリングのメニュー
	var filteringMenu;
	var latest = false;
	if(location.pathname.match(/^\/newsrelease/)){
		filteringMenu = '<li><a href="#" id="F_IR"><img src="/newsrelease/images/cmn_tab_ir_off.gif" alt="IR" width="164" height="29" /></a></li><li><a href="#" id="F_PR"><img src="/newsrelease/images/cmn_tab_pr_off.gif" alt="PR" width="164" height="29" /></a></li><li><a href="#" id="F_INFO"><img src="/newsrelease/images/cmn_tab_info_off.gif" alt="お知らせ" width="164" height="29" /></a></li>';
	}else if(location.pathname.match(/^\/ir\/newsrelease/)){
		filteringMenu = '<li><a href="#" id="F_IR"><img src="/ir/newsrelease/images/cmn_tab_ir_off.gif" alt="IR" width="219" height="29" /></a></li><li><a href="#" id="F_PR"><img src="/ir/newsrelease/images/cmn_tab_pr_off.gif" alt="PR" width="219" height="29" /></a></li>';
	}else if(location.pathname.match(/^\/ir/)){
		filteringMenu = '<li><a href="#" id="F_IR"><img src="/ir/images/index_tab_ir_off.gif" alt="IR" width="147" height="29" /></a></li><li><a href="#" id="F_PR"><img src="/ir/images/index_tab_pr_off.gif" alt="PR" width="147" height="29" /></a></li>';
		latest = true;
	}else{
		filteringMenu = '<li><a href="#" id="F_IR"><img src="/images/index_tab_ir_off.gif" alt="IR" width="94" height="29" /></a></li><li><a href="#" id="F_PR"><img src="/images/index_tab_pr_off.gif" alt="PR" width="94" height="29" /></a></li><li><a href="#" id="F_INFO"><img src="/images/index_tab_info_off.gif" alt="お知らせ" width="94" height="29" /></a></li>';
		latest = true;
	}
	$('#FILTER ul li:has(#F_ALL,#F_ALL_HOME,#F_ALL_IR)').after(filteringMenu);

	//クリックされた a の中の img の on/off を切り替える
	function now(changeimg) {
		$(changeimg).attr('src',$(changeimg).attr('src').replace(/^(.+)_off(\.[a-z]+)$/, '$1_on$2'));
	};

	$('#F_ALL, #F_ALL_HOME, #F_ALL_IR, #F_IR, #F_PR, #F_INFO').click(function(){
		var id = $(this).attr('id');
		//フィルタを解除
		$('tr').css('display', 'block');

		//タブの現在地表示を解除
		$('#F_ALL img, #F_ALL_HOME img, #F_ALL_IR img, #F_IR img, #F_PR img, #F_INFO img').each(function(){
			$(this).attr('src',$(this).attr('src').replace(/^(.+)_on(\.[a-z]+)$/, '$1_off$2'));
		});

		switch (id) {
			// ALL_HOME
			case 'F_ALL_HOME':
				now($('img',this));
				$('#LATEST_NEWS').load('/newsrelease/includes_c/news_all_home.html');
			break;
			// ALL_IR
			case 'F_ALL_IR':
				now($('img',this));
				$('#LATEST_NEWS').load('/newsrelease/includes_c/news_all_ir.html');
			break;
			// ALL
			case 'F_ALL':
				now($('img',this));
			break;
			// IR
			case 'F_IR':
				now($('img',this));
				latest ? $('#LATEST_NEWS').load('/newsrelease/includes_c/news_ir.html')
				       : $('tr:not(:has(img[src$="cmn_icon_news_ir.gif"]))').css('display', 'none');
			break;
			// PR
			case 'F_PR':
				now($('img',this));
				latest ? $('#LATEST_NEWS').load('/newsrelease/includes_c/news_pr.html')
				       : $('tr:not(:has(img[src$="cmn_icon_news_pr.gif"]))').css('display', 'none');
			break;
			// お知らせ
			case 'F_INFO':
				now($('img',this));
				latest ? $('#LATEST_NEWS').load('/newsrelease/includes_c/news_info.html')
				       : $('tr:not(:has(img[src$="cmn_icon_news_info.gif"]))').css('display', 'none');
			break;
			// デフォルト
			default:
				$('tr').css('display', 'block');
			break;
		}
	return false;
	});
});

