// JavaScript Document

$(function()
{
//ヘッドメニュー切り替え
	/*var pageID=$("body").attr("id");
	if(pageID != null){
	var crtPage=$("#"+pageID+"Button").attr("src").split("_");
	$("#"+pageID+"Button").attr({src:crtPage[0]+"_"+crtPage[1]+"_crt.gif",name:"crt"});
	}*/
//ボタンエンド挿入
	/*$('#head-menu li').prepend('<span class="menu-L-off"></span>').append('<span class="menu-B-off"></span>');
	$('#head-menu li:first .menu-L-off').remove();
	$('#head-menu li:last').after('<span class="menu-L-off"></span>');
	$('#head-menu .menu-L-off:last').css('margin',0);*/
//プリロードイメージ
	$('img[@src*="_off"]').each(
		function(){
			plImg=$(this).attr("src").split("_");
			if(plImg.length==3){
				crtFileType=plImg[2].split(".");
					$(this).attr("src",plImg[0]+"_"+plImg[1]+"_on."+crtFileType[1]);
					$(this).attr("src",plImg[0]+"_"+plImg[1]+"_off."+crtFileType[1]);
			}else if(plImg.length==2){
				crtFileType=plImg[1].split(".");
					$(this).attr("src",plImg[0]+"_on."+crtFileType[1]);
					$(this).attr("src",plImg[0]+"_off."+crtFileType[1]);
			}
		});
//ロールオーバー
	$('img[@src*="_off"]:not([@name])').hover(
		function(){
			crtImg=$(this).attr("src").split("_");
			if(crtImg.length==3){
				crtFileType=crtImg[2].split(".");
				$(this).attr("src",crtImg[0]+"_"+crtImg[1]+"_on."+crtFileType[1]);
			}else if(crtImg.length==2){
				crtFileType=crtImg[1].split(".");
				$(this).attr("src",crtImg[0]+"_on."+crtFileType[1]);
			}
		},
		function(){
			crtImg=$(this).attr("src").split("_");
			if(crtImg.length==3){
				crtFileType=crtImg[2].split(".");
				$(this).attr("src",crtImg[0]+"_"+crtImg[1]+"_off."+crtFileType[1]);
			}else if(crtImg.length==2){
				crtFileType=crtImg[1].split(".");
				$(this).attr("src",crtImg[0]+"_off."+crtFileType[1]);
			}
		});
	$('#head-menu li').hover(function()
		{
			$(this).css('background-image','url(images/button/header_menu_on.gif)');
		},function()
		{
			$(this).css('background-image','none');
		});
});
