// <a>タグのtarget属性とアイコン追加
$(function(){
    $("a[href^='http://']").attr("target", "_blank");
    $("a[href^='http://stopchildlabour.jp']").removeAttr("target");


    $("a[href$='.pdf']").attr("target", "_blank");
    $("a[href$='.pdf']").prepend('<img alt="" width="28" height="31" src="http://stopchildlabour.jp/icons/pdf_middle.gif" />');
    $("a[href$='.doc']").prepend('<img alt="" width="28" height="28" src="http://stopchildlabour.jp/icons/word_middle.gif" />');
    $("a[href$='.xdoc']").prepend('<img alt="" width="28" height="28" src="http://stopchildlabour.jp/icons/word_middle.gif" />');
});
