$(document).ready(function(){

(function() {
pdfIcon = ' <img src="/shared/images/ico_pdf_01.gif" alt="PDF" />';
blankIcon = ' <img src="/shared/images/ico_window_01.gif" alt="external site" />';
$('#main a[href$=".pdf"] , #main a[href^="http"], .index .list-date-01 a[href$=".pdf"] , .index .list-date-01 a[href^="http"]').not(':has(img)').each(function() {
var obj  = $(this);

if((obj).attr('href').match(/.pdf$/)){
obj.append(pdfIcon);
}else if((obj).attr('href').match(/^http/)){
 if((obj).attr('href').match(/kito.com/)){
 }else{
 obj.append(blankIcon);
 }
}
});

})();

});

