jQuery(function(){
	var current_path = location.pathname;
	current_path = current_path.replace(/\/index\.(html|htm|php|cgi)$/,'/');
	var link;
	jQuery('.sideUl').find('a').each(function(){
		link = jQuery(this).attr('href').replace(/\/index\.(html|htm|php|cgi)$/,'/');
		if(current_path == link){
			jQuery(this).css({
				'text-decoration':'none',
				'background':'#F7F7F7 url(/img/common/icon.jpg) no-repeat',
				'background-position':'0px 15px',
				'font-weight':'bold',
				'color':'#ff9900'
			});
		}
	});
});

