$(function(){

	// pdf等のリンクにiconを付与
	$('a').each(
		function(){
			if( $(this).attr('href') ) {
				//データアイコン
				if( $(this).attr('href').match( /\.(pdf|ppt|doc|xls)$/ ) ) {
					$(this).append( '<img src="/images/icons/'+RegExp.$1
	+'.gif" alt="'+RegExp.$1 +'形式" title="'+RegExp.$1 +'形式" class="iconsimg" />' ) ;
				}
			}
		}
	) ;

});
