// JavaScript Document

//現在のファイル名取得
function GetFileName(file_url){
	file_url = file_url.substring(file_url.lastIndexOf("/")+1,file_url.length)
return file_url;
}


//現在のファイル名と同じリンクのcssを変更
$(function(){
	$("table#logo td ul li a").each(function(){
		if($(this).attr("href") == GetFileName(location.href)){
			$(this).css("background","url(../images/select.png) no-repeat center");
		}
	});
});

