diff --git a/storminvoice/storminvoice.theme.inc b/storminvoice/storminvoice.theme.inc
index c710046..df11ce0 100644
--- a/storminvoice/storminvoice.theme.inc
+++ b/storminvoice/storminvoice.theme.inc
@@ -424,6 +424,16 @@ function theme_storminvoice_view($node, $teaser = FALSE, $page = FALSE) {
       $language = $myorg->orglanguage;
     }
   }
+  
+  $currencies = stormattribute_attributes_bydomain('Currency');
+  $mycurrency = $currencies['values'][$myorg->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' => $mycurrency)),
+    '#weight' => 5,
+  );
 
   if($node->content['body']['#value']) {
     $node->content['body_field'] = array(
