diff -ruN /a/commerce_stripe/commerce_stripe.module /b/commerce_stripe/commerce_stripe.module
--- /a/commerce_stripe/commerce_stripe.module	2014-08-28 18:14:17.000000000 -0400
+++ /b/commerce_stripe/commerce_stripe.module	2014-11-11 14:11:28.232211562 -0500
@@ -360,6 +360,77 @@
   }
 }
 
+/**
+ * Implements hook_form_FORM_ID_alter().
+ */
+function commerce_stripe_form_commerce_checkout_form_alter(&$form, &$form_state) {
+  // If this checkout form contains the payment method radios...
+  if (!empty($form['commerce_payment']['payment_method']['#options'])) {
+    // Loop over its options array looking for a Stripe option.
+    foreach ($form['commerce_payment']['payment_method']['#options'] as $key => &$value) {
+      list($method_id, $rule_name) = explode('|', $key);
+
+      // If we find Stripe...
+      if ($method_id == 'commerce_stripe') {
+        // Prepare the replacement radio button text with icons.
+        $currency = variable_get('stripe_currency');
+        $icons = commerce_stripe_icons('CAD');
+        $value .= '<div class="commerce-paypal-icons"><span class="label">' . t('Includes:') . '</span>' . implode(' ', $icons) . '</div>';
+
+        // Add the CSS.
+        $form['commerce_payment']['payment_method']['#attached']['css'][] = drupal_get_path('module', 'commerce_stripe') . '/theme/commerce_stripe.theme.css';
+
+        break;
+      }
+    }
+  }
+}
+
+/**
+ * Returns an array of Stripe payment method icon img elements.
+ *
+ * @param $country
+ *   Passed country code that has been set for the payment method
+ *
+ * @return
+ *   The array of themed payment method icons keyed by name: visa, mastercard,
+ *   amex, discover, etc
+ */
+function commerce_stripe_icons($country = '') {
+  if (empty($country)) return;
+
+  $icons = array();
+  foreach (commerce_stripe_payment_methods() as $name => $data) {
+    if (in_array($country, $data['currency'], TRUE)) {
+      $variables = array(
+        'path' => drupal_get_path('module', 'commerce_stripe') . '/images/' . $name . '.gif',
+        'title' => $data['title'],
+        'alt' => $data['title'],
+        'attributes' => array(
+          'class' => array('commerce-stripe-icon'),
+        ),
+      );
+      $icons[$name] = theme('image', $variables);
+    }
+  }
+
+  return $icons;
+}
+
+/**
+ * Returns an array of Stripe payment methods.
+ */
+function commerce_stripe_payment_methods() {
+  return array(
+    'visa' => array('title' => t('Visa'), 'currency' => array('USD', 'AUS', 'CAD', 'EUR')),
+    'mastercard' => array('title' => t('Mastercard'), 'currency' => array('USD', 'AUS', 'CAD', 'EUR')),
+    'amex' => array('title' => t('American Express'), 'currency' => array('USD', 'AUS', 'CAD', 'EUR')),
+    'discover' => array('title' => t('Discover'), 'currency' => array('USD')),
+    'diners' => array('title' => t('Diners Club'), 'currency' => array('USD')),
+    'jcb' => array('title' => t('JCB'), 'currency' => array('USD')),
+  );
+}
+
 function _commerce_stripe_load_settings($name = NULL) {
   static $settings = array();
 
diff -ruN /a/commerce_stripe/theme/commmerce_stripe.theme.css commerce_stripe/theme/commmerce_stripe.theme.css
--- /a/commerce_stripe/theme/commmerce_stripe.theme.css	1969-12-31 19:00:00.000000000 -0500
+++ /b/commerce_stripe/theme/commmerce_stripe.theme.css	2014-11-11 13:39:04.808273920 -0500
@@ -0,0 +1,12 @@
+
+.commerce-stripe-icons .label {
+  font-weight: bold;
+  padding-left: 19px;
+  margin-right: 5px;
+}
+
+.commerce-stripe-icon {
+  position: relative;
+  top: 6px;
+  margin-right: 4px;
+}
