diff --git a/storminvoice/storminvoice.theme.inc b/storminvoice/storminvoice.theme.inc
index c710046..2a07f81 100644
--- a/storminvoice/storminvoice.theme.inc
+++ b/storminvoice/storminvoice.theme.inc
@@ -425,6 +425,16 @@ function theme_storminvoice_view($node, $teaser = FALSE, $page = FALSE) {
     }
   }
 
+  if (isset($myorg->currency)) {
+    $currencies = stormattribute_attributes_bydomain('Currency');
+    $node->content['group5']['currency'] = array(
+      '#prefix' => '<div class="currency">',
+      '#suffix' => '</div>',
+      '#value' => t('Unless stated, amounts shown on this invoice are quoted in %currency.', array('%currency' => $currencies['values'][$myorg->currency])),
+      '#weight' => 5,
+    );
+  }
+
   if($node->content['body']['#value']) {
     $node->content['body_field'] = array(
       '#prefix' => '<div class="stormbody">',
