(function () {
	var URL          = location.href;
	var a            = URL.split('/');
	var list         = $('contents-nav');
	var elm          = list.getElementsByTagName('a');
	var len          = elm.length;
	var html_name    = a[a.length-1];
	
	for (var i=0; i<len; i++){
		
		var aa =elm[i].getAttribute('href').split('/');
		
		if(html_name !='' && aa[aa.length-1] == html_name){
			elm[i].removeAttribute('href'); 
			elm[i].style.color = '#666666';
			elm[i].style.backgroundImage = 'url(/shared/image/side/side-arrow-active.gif)';
		}
	}
	
})();