
j$(function(){
	var localNaviFlag = new Array();
	var localNaviActive = new Array();
	var ua = navigator.userAgent;
	
	
	j$('#left_contents > div > ul > li a img')
		.each(function(event){
			var thisImgSrc = j$(this).attr('src');
			var re = new RegExp(currentNavi);
			if( currentNavi != '' && thisImgSrc.match(re) ){
				var onSrc = thisImgSrc.replace(/\.gif/, '_on.gif');
				j$(this).attr('src', onSrc);
				return false;
			}
		})
		.mouseover(function(event){
			var thisImgSrc = j$(this).attr('src');
			if( !thisImgSrc.match(/_on\.gif/) ){
				var onSrc = j$(this).attr('src').replace(/\.gif/, '_on.gif');
				j$(this).attr('src', onSrc);
			}
		})
		.mouseout(function(event){
			var thisImgSrc = j$(this).attr('src');
			var thisImgSrc2 = thisImgSrc.split('_on.gif');
			var thisImgSrc3 = thisImgSrc2[0].split('/');
			if( thisImgSrc3[thisImgSrc3.length - 1] != currentNavi ){
				var onSrc = thisImgSrc.replace(/_on\.gif/, '.gif');
				j$(this).attr('src', onSrc);
			}
		})
		
	if( ua.indexOf('MSIE 6') != -1 || ua.indexOf('MSIE 7') != -1 ){
		j$('#left_contents > div > ul > li div ul li a img')
			.each(function(event){
				var thisImgSrc = j$(this).attr('src');
				var re = new RegExp(currentNavi);
				if( currentNavi != '' && thisImgSrc.match(re) ){
					var onSrc = thisImgSrc.replace(/\.gif/, '_on.gif');
					j$(this).attr('src', onSrc);
					return false;
				}
			})
			.mouseover(function(event){
				var thisImgSrc = j$(this).attr('src');
				if( !thisImgSrc.match(/_on\.gif/) ){
					var onSrc = j$(this).attr('src').replace(/\.gif/, '_on.gif');
					j$(this).attr('src', onSrc);
				}
			})
			.mouseout(function(event){
				var thisImgSrc = j$(this).attr('src');
				var thisImgSrc2 = thisImgSrc.split('_on.gif');
				var thisImgSrc3 = thisImgSrc2[0].split('/');
				if( thisImgSrc3[thisImgSrc3.length - 1] != currentNavi ){
					var onSrc = thisImgSrc.replace(/_on\.gif/, '.gif');
					j$(this).attr('src', onSrc);
				}
			})
	}
	
});






