
/* PDFアイコン
--------------------------------------------------------------------*/

$(function(){
					 
//属性セレクタに関する修飾

	//属性名後方一致
	$('a[href$=.pdf]')
	.css('position','relative')
	.css('bottom','2px')
	.css('margin','0 0 0 3px')
	.attr('target', '_blank')
	.before(
		$('<img />')
		.attr({src : "../images/common/iconPdf.gif", width : "13", height : "13", alt : ""})	
	);
})

