$(document).ready(function(){
        jQuery.noConflict();
        var iconMap = {
            'a[href$=".pdf"]': '/common/images/jdc_acrobat.gif',
            'a[href^="http://feeds.feedburner.com/jdc/irnews"]': '/common/images/jdc_acrobat.gif',
            'a[href^="http://eir.eol.co.jp"]': '/common/images/jdc_acrobat.gif'
            };
        jQuery(function(){
                jQuery.each(iconMap, function(selector, icon){
                    jQuery(selector).css({
                              'background': 'transparent '+
                              'url(\''+icon+'\') '+
                              'center left no-repeat',
                              'padding-left': '20px'
                    });
                    jQuery(selector).click(function(){
                            window.open(this.href, '_blank');
                            return false;
                        });
                });
        });
});

