/**
 * キーワードクリック時にソート順クエリ差込
 */
jQuery(document).ready(function(){
    jQuery('a[class^=Kotobank_supp_]').each(function(){
        jQuery(this).click(function(){
            if (jQuery(this).attr('_rewrited') != 'true') {
                var supplier = jQuery(this).attr('class').replace(/^Kotobank_supp_/, '').replace(/ .*$/, '');
                jQuery(this).attr('href', jQuery(this).attr('href') + '?supp=' + supplier);
                jQuery(this).attr('_rewrited', 'true');
            }
            return true;
        });
    });
    jQuery('a[class^=Kotobank_dic_]').each(function(){
        jQuery(this).click(function(){
            if (jQuery(this).attr('_rewrited') != 'true') {
                var dictionary = jQuery(this).attr('class').replace(/^Kotobank_dic_/, '').replace(/ .*$/, '');
                jQuery(this).attr('href', jQuery(this).attr('href') + '?dic=' + dictionary);
                jQuery(this).attr('_rewrited', 'true');
            }
            return true;
        });
    });
});
