$(function() {
  $('.tel').each( function(){
      if ( !navigator.userAgent.match(/Safari/)
        || !navigator.userAgent.match(/Mobile/) ) {
        return;
      }
      var text = $(this).find('img').attr('alt');
      if (
           typeof text != 'undefined'
        && text.replace(/[\x00-\x1f\x7f\s]/,'')
               .match(/^tel:(\+?\d[\d\-]+[\d\w;=\+\.\-]+)/)
      ) {
        text = RegExp.$1;
      }
      else {
        text = $(this).text()
                      .replace(/[\x00-\x1f\x7f\s]/g,'');
      }
      if ( text != '' ) {
        $(this).wrapInner('<a href="tel:' + text
                          + '" title="電話をかけます。"></a>'
               )
               .click(
                 function(){
                   return confirm(
                     text + 'へ電話をかけます。'
                   );
                 }
               );
      }
  });
});
