
// コーナン商事 PDFアイコン表示用


$(document).ready(function(){

//属性セレクタに関する修飾

 //属性名後方一致
 $('a[href*=".pdf"]')
  .css('padding','0 0 0 17px')
  .css('background','transparent url(../images/common/pdf-icon.gif) no-repeat top left')
  .click(function(){
        window.open(this.href, '_blank');
        return false;
  });
})

