/*
* @title mailto2sms
* @description a要素のhref属性にある"mailto:"を"sms:"に変更します
* @include http://*
* @license MIT License
* @require
*/
(function(){
var a_mailto_els = document.querySelectorAll('a[href^="mailto:"]'),
len = a_mailto_els.length,
a_el, i;
for(i=0;i<len;i++){
a_el = a_mailto_els[i];
a_el.href = a_el.href.replace(/^mailto:/, "sms:");
}
})();