forex 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/features/step_definitions/tabular_rates_steps.rb +1 -1
- data/lib/forex/tabular_rates.rb +11 -2
- data/lib/forex/traders/jm/fgb.rb +18 -0
- data/lib/forex/traders/jm/sagicor.rb +10 -0
- data/lib/forex/version.rb +1 -1
- data/spec/rates/fgb.yml +20 -0
- data/spec/rates/jmmb.yml +25 -0
- data/spec/rates/sagicore.yml +20 -0
- data/spec/support/vcr.rb +0 -1
- data/spec/traders_spec.rb +20 -1
- data/spec/vcr/traders/fgb.yml +575 -0
- data/spec/vcr/traders/jmmb.yml +36 -36
- data/spec/vcr/traders/sagicore.yml +863 -0
- metadata +14 -2
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA1:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 8c17d5904df7323d11c5d76a221f0f184c7f1361
         | 
| 4 | 
            +
              data.tar.gz: ce15542872d6db044a109c58aaea2c2d53ff4538
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 1f041c9670792ec5a29135c96f00bc3ef8791c563d451820ac797b7c5253e8af04b1c45804022c15f9442984da55f4715faaaaaedb1e4bb6d64712e2f333f2af
         | 
| 7 | 
            +
              data.tar.gz: 1fbc4be31fc08d22072c54a1ed0edf4a73b3f956a3091a4972569ec149feab9e966ddf99db31ec131971090e824d209a33a6e4f0aabb5372a640dccff5784748
         | 
| @@ -26,7 +26,7 @@ def ensure_rates_are_equal_to(table) | |
| 26 26 | 
             
                currencies[table_hash.delete(:currency_code)] =
         | 
| 27 27 | 
             
                  table_hash.each_with_object({}) do |currency_rate, rates|
         | 
| 28 28 | 
             
                    currency, rate = *currency_rate
         | 
| 29 | 
            -
                    rates[currency] = rate.to_f
         | 
| 29 | 
            +
                    rates[currency] = rate.to_f == 0 ? nil : rate.to_f
         | 
| 30 30 | 
             
                  end
         | 
| 31 31 | 
             
              end
         | 
| 32 32 |  | 
    
        data/lib/forex/tabular_rates.rb
    CHANGED
    
    | @@ -4,7 +4,15 @@ module Forex | |
| 4 4 |  | 
| 5 5 | 
             
                attr_accessor :table, :options
         | 
| 6 6 |  | 
| 7 | 
            -
                 | 
| 7 | 
            +
                DEFAULT_OPTIONS = {
         | 
| 8 | 
            +
                  currency_code: 0,
         | 
| 9 | 
            +
                  buy_cash: 1,
         | 
| 10 | 
            +
                  buy_draft: 2,
         | 
| 11 | 
            +
                  sell_cash: 3,
         | 
| 12 | 
            +
                  sell_draft: 4,
         | 
| 13 | 
            +
                }
         | 
| 14 | 
            +
             | 
| 15 | 
            +
                def initialize(table, options = DEFAULT_OPTIONS)
         | 
| 8 16 | 
             
                  @table = table
         | 
| 9 17 | 
             
                  @options = options.symbolize_keys
         | 
| 10 18 | 
             
                end
         | 
| @@ -45,7 +53,8 @@ module Forex | |
| 45 53 |  | 
| 46 54 | 
             
                # converts the currency to it's storage representation
         | 
| 47 55 | 
             
                def value
         | 
| 48 | 
            -
                   | 
| 56 | 
            +
                  value = @string.strip.to_f
         | 
| 57 | 
            +
                  value == 0.0 ? nil : value
         | 
| 49 58 | 
             
                end
         | 
| 50 59 |  | 
| 51 60 | 
             
              end
         | 
| @@ -0,0 +1,18 @@ | |
| 1 | 
            +
            Forex::Trader.define "FGB" do |t|
         | 
| 2 | 
            +
              t.base_currency = "JMD"
         | 
| 3 | 
            +
              t.name          = "First Global Bank"
         | 
| 4 | 
            +
              t.endpoint      = "http://www.firstglobal-bank.com/"
         | 
| 5 | 
            +
             | 
| 6 | 
            +
              t.rates_parser = Proc.new do |doc| # doc is a nokogiri document
         | 
| 7 | 
            +
                options = {
         | 
| 8 | 
            +
                  currency_code: 0,
         | 
| 9 | 
            +
                  buy_cash: 1,
         | 
| 10 | 
            +
                  buy_draft: 2,
         | 
| 11 | 
            +
                  sell_cash: 3,
         | 
| 12 | 
            +
                  sell_draft: 3,
         | 
| 13 | 
            +
                }
         | 
| 14 | 
            +
             | 
| 15 | 
            +
                table = doc.css("#forex_rates table").first
         | 
| 16 | 
            +
                Forex::TabularRates.new(table, options).parse_rates
         | 
| 17 | 
            +
              end
         | 
| 18 | 
            +
            end
         | 
| @@ -0,0 +1,10 @@ | |
| 1 | 
            +
            Forex::Trader.define "Sagicore" do |t|
         | 
| 2 | 
            +
              t.base_currency = "JMD"
         | 
| 3 | 
            +
              t.name          = "Sagicore Bank"
         | 
| 4 | 
            +
              t.endpoint      = "http://www.gopancaribbean.com/personal-banking"
         | 
| 5 | 
            +
             | 
| 6 | 
            +
              t.rates_parser = Proc.new do |doc| # doc is a nokogiri document
         | 
| 7 | 
            +
                table = doc.css("table .data").first
         | 
| 8 | 
            +
                Forex::TabularRates.new(table).parse_rates
         | 
| 9 | 
            +
              end
         | 
| 10 | 
            +
            end
         | 
    
        data/lib/forex/version.rb
    CHANGED
    
    
    
        data/spec/rates/fgb.yml
    ADDED
    
    | @@ -0,0 +1,20 @@ | |
| 1 | 
            +
            USD:
         | 
| 2 | 
            +
              buy_cash: 102.10
         | 
| 3 | 
            +
              buy_draft: 103.50
         | 
| 4 | 
            +
              sell_draft: 105.70
         | 
| 5 | 
            +
              sell_cash: 105.70
         | 
| 6 | 
            +
            CAD:
         | 
| 7 | 
            +
              buy_cash: 97.00
         | 
| 8 | 
            +
              buy_draft: 98.00
         | 
| 9 | 
            +
              sell_draft: 100.60
         | 
| 10 | 
            +
              sell_cash: 100.60
         | 
| 11 | 
            +
            GBP:
         | 
| 12 | 
            +
              buy_cash: 163.00
         | 
| 13 | 
            +
              buy_draft: 166.50
         | 
| 14 | 
            +
              sell_draft: 173.50
         | 
| 15 | 
            +
              sell_cash: 173.50
         | 
| 16 | 
            +
            EUR:
         | 
| 17 | 
            +
              buy_cash: 138.00
         | 
| 18 | 
            +
              buy_draft: 140.00
         | 
| 19 | 
            +
              sell_draft: 143.50
         | 
| 20 | 
            +
              sell_cash: 143.50
         | 
    
        data/spec/rates/jmmb.yml
    ADDED
    
    | @@ -0,0 +1,25 @@ | |
| 1 | 
            +
            USD:
         | 
| 2 | 
            +
              buy_cash: 103.45
         | 
| 3 | 
            +
              buy_draft: 104.45
         | 
| 4 | 
            +
              sell_draft: 106.0
         | 
| 5 | 
            +
              sell_cash:
         | 
| 6 | 
            +
            TTD:
         | 
| 7 | 
            +
              buy_cash: 14.55
         | 
| 8 | 
            +
              buy_draft: 15.01
         | 
| 9 | 
            +
              sell_draft: 16.92
         | 
| 10 | 
            +
              sell_cash:
         | 
| 11 | 
            +
            GBP:
         | 
| 12 | 
            +
              buy_cash: 167.74
         | 
| 13 | 
            +
              buy_draft: 168.74
         | 
| 14 | 
            +
              sell_draft: 174.53
         | 
| 15 | 
            +
              sell_cash:
         | 
| 16 | 
            +
            EUR:
         | 
| 17 | 
            +
              buy_cash: 138.81
         | 
| 18 | 
            +
              buy_draft: 140.31
         | 
| 19 | 
            +
              sell_draft: 145.68
         | 
| 20 | 
            +
              sell_cash:
         | 
| 21 | 
            +
            CAD:
         | 
| 22 | 
            +
              buy_cash: 95.59
         | 
| 23 | 
            +
              buy_draft: 96.59
         | 
| 24 | 
            +
              sell_draft: 100.56
         | 
| 25 | 
            +
              sell_cash:
         | 
| @@ -0,0 +1,20 @@ | |
| 1 | 
            +
            USD:
         | 
| 2 | 
            +
              buy_cash: 103.50
         | 
| 3 | 
            +
              buy_draft: 104.50
         | 
| 4 | 
            +
              sell_cash: 105.80
         | 
| 5 | 
            +
              sell_draft: 105.90
         | 
| 6 | 
            +
            CAD:
         | 
| 7 | 
            +
              buy_cash: 94.50
         | 
| 8 | 
            +
              buy_draft: 95.50
         | 
| 9 | 
            +
              sell_cash: 100.00
         | 
| 10 | 
            +
              sell_draft: 100.50
         | 
| 11 | 
            +
            GBP:
         | 
| 12 | 
            +
              buy_cash: 168.50
         | 
| 13 | 
            +
              buy_draft: 169.50
         | 
| 14 | 
            +
              sell_cash: 174.00
         | 
| 15 | 
            +
              sell_draft: 174.50
         | 
| 16 | 
            +
            EUR:
         | 
| 17 | 
            +
              buy_cash: 138.00
         | 
| 18 | 
            +
              buy_draft: 139.00
         | 
| 19 | 
            +
              sell_cash: 144.40
         | 
| 20 | 
            +
              sell_draft: 145.00
         | 
    
        data/spec/support/vcr.rb
    CHANGED
    
    
    
        data/spec/traders_spec.rb
    CHANGED
    
    | @@ -4,7 +4,26 @@ describe "Traders" do | |
| 4 4 |  | 
| 5 5 | 
             
              Trader.all.each do |short_name, trader|
         | 
| 6 6 | 
             
                it short_name, :vcr do
         | 
| 7 | 
            -
                   | 
| 7 | 
            +
                  trader.fetch
         | 
| 8 | 
            +
             | 
| 9 | 
            +
                  expect(trader.rates).not_to be_empty
         | 
| 10 | 
            +
                  expect(trader.rates).to be == expected_rates(short_name)
         | 
| 8 11 | 
             
                end
         | 
| 9 12 | 
             
              end
         | 
| 13 | 
            +
             | 
| 14 | 
            +
              def expected_rates(short_name)
         | 
| 15 | 
            +
                expected_rates_file_path = "spec/rates/#{short_name.downcase}.yml"
         | 
| 16 | 
            +
             | 
| 17 | 
            +
                unless File.exists?(expected_rates_file_path)
         | 
| 18 | 
            +
                  pending "Create expected rates YAML for #{short_name} at #{expected_rates_file_path}"
         | 
| 19 | 
            +
                end
         | 
| 20 | 
            +
             | 
| 21 | 
            +
                YAML.load(File.read(expected_rates_file_path)). # read file
         | 
| 22 | 
            +
                  each_with_object({}) do |(currency,txns), rates| # make txn type a symbol
         | 
| 23 | 
            +
                    rates[currency] = txns.each_with_object({}) do |(txn, price), txn_price|
         | 
| 24 | 
            +
                      txn_price[txn.to_sym] = price
         | 
| 25 | 
            +
                    end
         | 
| 26 | 
            +
                  end
         | 
| 27 | 
            +
              end
         | 
| 28 | 
            +
             | 
| 10 29 | 
             
            end
         | 
| @@ -0,0 +1,575 @@ | |
| 1 | 
            +
            ---
         | 
| 2 | 
            +
            http_interactions:
         | 
| 3 | 
            +
            - request:
         | 
| 4 | 
            +
                method: get
         | 
| 5 | 
            +
                uri: http://www.firstglobal-bank.com/
         | 
| 6 | 
            +
                body:
         | 
| 7 | 
            +
                  encoding: US-ASCII
         | 
| 8 | 
            +
                  string: ''
         | 
| 9 | 
            +
                headers:
         | 
| 10 | 
            +
                  Accept-Encoding:
         | 
| 11 | 
            +
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         | 
| 12 | 
            +
                  Accept:
         | 
| 13 | 
            +
                  - '*/*'
         | 
| 14 | 
            +
                  User-Agent:
         | 
| 15 | 
            +
                  - Ruby
         | 
| 16 | 
            +
                  Host:
         | 
| 17 | 
            +
                  - www.firstglobal-bank.com
         | 
| 18 | 
            +
              response:
         | 
| 19 | 
            +
                status:
         | 
| 20 | 
            +
                  code: 200
         | 
| 21 | 
            +
                  message: OK
         | 
| 22 | 
            +
                headers:
         | 
| 23 | 
            +
                  Date:
         | 
| 24 | 
            +
                  - Thu, 05 Dec 2013 16:59:52 GMT
         | 
| 25 | 
            +
                  Server:
         | 
| 26 | 
            +
                  - Microsoft-IIS/6.0
         | 
| 27 | 
            +
                  X-Powered-By:
         | 
| 28 | 
            +
                  - ASP.NET
         | 
| 29 | 
            +
                  X-Aspnet-Version:
         | 
| 30 | 
            +
                  - 2.0.50727
         | 
| 31 | 
            +
                  Cache-Control:
         | 
| 32 | 
            +
                  - private
         | 
| 33 | 
            +
                  Content-Type:
         | 
| 34 | 
            +
                  - text/html; charset=utf-8
         | 
| 35 | 
            +
                  Content-Length:
         | 
| 36 | 
            +
                  - '45231'
         | 
| 37 | 
            +
                body:
         | 
| 38 | 
            +
                  encoding: UTF-8
         | 
| 39 | 
            +
                  string: "\r\n<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"
         | 
| 40 | 
            +
                    \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\r\n<head>\r\n<meta
         | 
| 41 | 
            +
                    http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\r\n<title>First
         | 
| 42 | 
            +
                    Global Bank Limited... Your Commercial Bank from GraceKennedy</title>\r\n<link
         | 
| 43 | 
            +
                    href=\"thrColFixHdr.css\" rel=\"stylesheet\" type=\"text/css\" />\r\n<link
         | 
| 44 | 
            +
                    href=\"home.css\" rel=\"stylesheet\" type=\"text/css\" />\r\n<!--[if lte IE
         | 
| 45 | 
            +
                    6]>\r\n<style type=\"text/css\"> \r\n/* place css box model fixes for IE 6
         | 
| 46 | 
            +
                    or earlier* in this conditional comment */\r\n.thrColFixHdr #sidebar1 { width:
         | 
| 47 | 
            +
                    169px; padding:0; margin:0;}\r\n.thrColFixHdr #sidebar2 { width: 458px; padding:0;
         | 
| 48 | 
            +
                    margin:0;}\r\n.thrColFixHdr #mainContent {margin: 0 458px 0 169px; padding:0;
         | 
| 49 | 
            +
                    \ }\r\n.thrColFixHdr #container{ padding:0;}\r\n#your2 ul {margin:0px;}\r\n</style>\r\n<![endif]-->\r\n\r\n<!--[if
         | 
| 50 | 
            +
                    IE ]>\r\n<style type=\"text/css\"> \r\n/* place css fixes for all versions
         | 
| 51 | 
            +
                    of IE in this conditional comment */\r\n.thrColFixHdr #sidebar2, .thrColFixHdr
         | 
| 52 | 
            +
                    #sidebar1 { padding-top: 0px; }\r\n.thrColFixHdr #mainContent { zoom: 1;padding-left:0px;
         | 
| 53 | 
            +
                    }\r\n.thrColFixHdr #your ul { margin-left: 0px; }\r\n/* the above proprietary
         | 
| 54 | 
            +
                    zoom property gives IE the hasLayout it needs to avoid several bugs */\r\n</style>\r\n<![endif]-->\r\n\r\n<script
         | 
| 55 | 
            +
                    type=\"text/javascript\" src=\"p7pm/p7popmenu.js\"></script>\r\n<style type=\"text/css\"
         | 
| 56 | 
            +
                    media=\"screen\">\r\n<!--\r\n@import url(\"p7pm/p7pmv0.css\");\r\n-->\r\n</style>\r\n<script
         | 
| 57 | 
            +
                    type=\"text/javascript\" src=\"p7epm/p7EPMscripts.js\"></script>\r\n<link
         | 
| 58 | 
            +
                    href=\"p7epm/epm4/p7EPM04.css\" rel=\"stylesheet\" type=\"text/css\" media=\"all\"
         | 
| 59 | 
            +
                    />\r\n<link href=\"p7epm/epm4/p7EPM05.css\" rel=\"stylesheet\" type=\"text/css\"
         | 
| 60 | 
            +
                    media=\"all\" />\r\n<script type=\"text/javascript\">\r\n<!--\r\nfunction
         | 
| 61 | 
            +
                    MM_openBrWindow(theURL,winName,features) { //v2.0\r\n  window.open(theURL,winName,features);\r\n}\r\n//-->\r\n</script>\r\n
         | 
| 62 | 
            +
                    \ <script language=JavaScript src=\"livechat/vtrack.aspx\"></script>\r\n\r\n</head>\r\n<body
         | 
| 63 | 
            +
                    class=\"thrColFixHdr\" onload=\"P7_initPM(0,0,1,-20,10)\">\r\n<div id=\"container\">\r\n
         | 
| 64 | 
            +
                    \ <div id=\"header\">\r\n    <div id=\"top_1\"><img src=\"images/top_1.jpg\"
         | 
| 65 | 
            +
                    width=\"980\" height=\"49\" alt=\" \" /></div>\r\n    <div id=\"top_2\"><a
         | 
| 66 | 
            +
                    href=\"/about_fgb/about_fgb.aspx\" title=\"About First Global Bank\">About
         | 
| 67 | 
            +
                    FGB</a>.<a href=\"online_banking/login.aspx\">My Accounts</a>.<a href=\"/customer_service/general_faqs.aspx\"
         | 
| 68 | 
            +
                    title=\"FGB Customer Service\">Help</a>.<a href=\"http://www.google.com/cse?cx=012720650344799034876%3Ag2yuj7oq4aw&ie=UTF-8\"
         | 
| 69 | 
            +
                    title=\"Search\" target=\"_blank\">Search</a>.<a href=\"/branches/corporate.aspx\">Contact
         | 
| 70 | 
            +
                    Us</a>.<a href=\"secure/forms/depositacc.aspx\">Open an Account</a>.<a href=\"/customer_service/introduction.aspx\">Customer
         | 
| 71 | 
            +
                    Service</a> . <span  class=\"login_red\"><img src=\"images/icon_login_lock.gif\"
         | 
| 72 | 
            +
                    width=\"9\" height=\"12\" alt=\"FGB Online Banking Login\" /> <a href=\"online_banking/login.aspx\">Online
         | 
| 73 | 
            +
                    Banking Login</a></span></div>\r\n    <div id=\"top_3\"><a href=\"http://www.gracekennedy.com/\"
         | 
| 74 | 
            +
                    title=\"Grace Kennedy Limited\" target=\"_blank\">GraceKennedy</a>.<a href=\"http://www.fgfs.com/\"
         | 
| 75 | 
            +
                    title=\"First Global Financial Services\" target=\"_blank\">First Global Financial
         | 
| 76 | 
            +
                    Services</a>.<a href=\"http://www.fgttnow.com\" title=\"First Global Bank-
         | 
| 77 | 
            +
                    Trinidad & Tobago\" target=\"_blank\">First Global Trinidad & Tobago</a></div>\r\n
         | 
| 78 | 
            +
                    \   <div id=\"top_4\"><img src=\"images/top_4.jpg\" width=\"980\" height=\"30\"
         | 
| 79 | 
            +
                    alt=\" \" /></div>\r\n    <div id=\"ticker\"></div>\r\n    <!-- end #header
         | 
| 80 | 
            +
                    -->\r\n  </div>\r\n  <div id=\"sidebar1\">\r\n    <ul id=\"p7PMnav\">\r\n
         | 
| 81 | 
            +
                    \ <li><a href=\"/index.aspx\">HOME</a></li>\r\n  <li><a href=\"/personal_banking/index.aspx\"
         | 
| 82 | 
            +
                    class=\"p7PMtrg\">PERSONAL BANKING</a>\r\n    <ul>\r\n      <li><a href=\"/personal_banking/savings.aspx\"
         | 
| 83 | 
            +
                    class=\"p7PMtrg\">Savings Accounts</a>\r\n        <ul>\r\n          <li><a
         | 
| 84 | 
            +
                    href=\"/products/statement_savings.aspx\">Statement</a></li>\r\n          <li><a
         | 
| 85 | 
            +
                    href=\"/products/premier_savings.aspx\">US$ Premier</a></li>\r\n          <li><a
         | 
| 86 | 
            +
                    href=\"/products/taxfree_deposit.aspx\">Tax-free Deposit</a></li>\r\n          <li><a
         | 
| 87 | 
            +
                    href=\"/products/global_kids_teens.aspx\">Global Kids/Teens</a></li>\r\n          <li><a
         | 
| 88 | 
            +
                    href=\"/products/global_savers_club.aspx\">Global Savers Club</a></li>\r\n
         | 
| 89 | 
            +
                    \       </ul>\r\n      </li>\r\n      <li><a href=\"/personal_banking/chequing.aspx\"
         | 
| 90 | 
            +
                    class=\"p7PMtrg\">Chequing Accounts</a>\r\n        <ul>\r\n          <li><a
         | 
| 91 | 
            +
                    href=\"/products/foreign_currency_chequing.aspx\">Foreign Currency</a></li>\r\n
         | 
| 92 | 
            +
                    \         <li><a href=\"/products/money_market_chequing.aspx\">Individual
         | 
| 93 | 
            +
                    Money Market</a></li>\r\n          <li><a href=\"/products/interest_chequing.aspx\">Interest
         | 
| 94 | 
            +
                    Chequing</a></li>\r\n        </ul>\r\n      </li>\r\n      <li><a href=\"/personal_banking/loans.aspx\"
         | 
| 95 | 
            +
                    class=\"p7PMtrg\">Loans & Credit</a>\r\n        <ul>\r\n          <li><a
         | 
| 96 | 
            +
                    href=\"/products/double_yuh_money.aspx\">Double Yuh Money</a></li>\r\n          <li><a
         | 
| 97 | 
            +
                    href=\"/products/car_loan.aspx\">Motor Vehicle</a></li>\r\n          <li><a
         | 
| 98 | 
            +
                    href=\"/products/education_loan.aspx\">Education</a></li>\r\n          <li><a
         | 
| 99 | 
            +
                    href=\"/products/go_green_energy_saver_loan.aspx\">Go Green Energy Saver</a></li>\r\n
         | 
| 100 | 
            +
                    \        <li><a href=\"/products/home_equity.aspx\">Home Equity</a></li>\r\n
         | 
| 101 | 
            +
                    \         <li><a href=\"/products/home_equity_lines_of_credit.aspx\">Home
         | 
| 102 | 
            +
                    Equity Lines of Credit</a></li>\r\n          <li><a href=\"/products/pb_insurance_premium_financing.aspx\">Insurance
         | 
| 103 | 
            +
                    Premium Financing</a></li>\r\n          <li><a href=\"/products/overdraft_protection_plan.aspx\">Overdraft
         | 
| 104 | 
            +
                    Protection Plan</a></li>\r\n          <li><a href=\"/products/bond_extension_support.aspx\">Bond
         | 
| 105 | 
            +
                    Extension Support Loan</a></li>\r\n        </ul>\r\n      </li>\r\n      <li><a
         | 
| 106 | 
            +
                    href=\"/personal_banking/credit_cards.aspx\" class=\"p7PMtrg\">Credit Cards</a>\r\n
         | 
| 107 | 
            +
                    \       <ul>\r\n          <li><a href=\"http://rewards.firstglobal-bank.com/credit_cards/visa_platinum.aspx\">Visa
         | 
| 108 | 
            +
                    Platinum</a></li>\r\n          <li><a href=\"http://rewards.firstglobal-bank.com/credit_cards/visa_gold.aspx\">Visa
         | 
| 109 | 
            +
                    Gold</a></li>\r\n          <li><a href=\"http://rewards.firstglobal-bank.com/credit_cards/visa_classic.aspx\">Visa
         | 
| 110 | 
            +
                    Classic</a></li>\r\n          <li><a href=\"http://rewards.firstglobal-bank.com/credit_cards/jccul_visa_classic.aspx\">JCCUL
         | 
| 111 | 
            +
                    Classic Card</a></li>\r\n          <li><a href=\"/personal_banking/credit_cards.aspx\">Choose
         | 
| 112 | 
            +
                    A Card</a></li>\r\n          <li><a href=\"/personal_banking/credit_security.aspx\">Card
         | 
| 113 | 
            +
                    Security</a></li>\r\n          <li><a href=\"/personal_banking/credit_balance_transfer.aspx\">Balance
         | 
| 114 | 
            +
                    Transfer</a></li>\r\n          <!--li><a href=\"/personal_banking/card_protection.aspx\">Card
         | 
| 115 | 
            +
                    Protection</a></li-->\r\n          <li><a href=\"/personal_banking/terms_conditions.aspx\">Terms
         | 
| 116 | 
            +
                    & Conditions</a></li>\r\n          <li><a href=\"/personal_banking/apply_online.aspx\">Apply
         | 
| 117 | 
            +
                    Online</a></li>\r\n          <li><a href=\"/personal_banking/credit_faqs.aspx\">FAQs</a></li>\r\n
         | 
| 118 | 
            +
                    \         <li><a href=\"/personal_banking/credit_education.aspx\">Credit Education</a></li>\r\n
         | 
| 119 | 
            +
                    \       </ul>\r\n      </li>\r\n      <li><a href=\"/personal_banking/high_yield_options.aspx\"
         | 
| 120 | 
            +
                    class=\"p7PMtrg\">High Yield Options</a>\r\n        <ul>\r\n          <!--li><a
         | 
| 121 | 
            +
                    href=\"/products/long_term_savings.aspx\">Long Term Savings Account</a></li-->\r\n
         | 
| 122 | 
            +
                    \         <li><a href=\"/products/certificates_of_deposit.aspx\">Certificates
         | 
| 123 | 
            +
                    of Deposit</a></li>\r\n          <li><a href=\"/products/type_a_account.aspx\">Type
         | 
| 124 | 
            +
                    \"A\" Account</a></li>\r\n        </ul>\r\n      </li>\r\n      <li><a href=\"/personal_banking/general_banking_solutions.aspx\"
         | 
| 125 | 
            +
                    class=\"p7PMtrg\">General Banking Solutions</a>\r\n        <ul>\r\n          <li><a
         | 
| 126 | 
            +
                    href=\"/products/global_direct.aspx\">GlobalDirect</a></li>\r\n          <li><a
         | 
| 127 | 
            +
                    href=\"/products/global_pay.aspx\">Global Pay</a></li>\r\n          <li><a
         | 
| 128 | 
            +
                    href=\"/products/debit_card_abm.aspx\">Debit Card & ABM facilities</a></li>\r\n
         | 
| 129 | 
            +
                    \         <li><a href=\"/online_banking/index.aspx\">Online Banking</a></li>\r\n
         | 
| 130 | 
            +
                    \         <li><a href=\"/products/foreign_exchange_trading.aspx\">Foreign
         | 
| 131 | 
            +
                    Exchange Trading</a></li>\r\n          <li><a href=\"/products/safety_deposit.aspx\">Safe
         | 
| 132 | 
            +
                    Deposit Boxes</a></li>\r\n          <li><a href=\"/products/wire_transfers.aspx\">Wire
         | 
| 133 | 
            +
                    Transfers</a></li>\r\n          <li><a href=\"/products/drafts_managers_cheques.aspx\">Drafts
         | 
| 134 | 
            +
                    & Manager's Cheques</a></li>\r\n          <li><a href=\"/products/travellers_cheques.aspx\">Traveller's
         | 
| 135 | 
            +
                    Cheques</a></li>\r\n          <li><a href=\"/products/certification_of_balances.aspx\">Certification
         | 
| 136 | 
            +
                    of Balances</a></li>\r\n          <li><a href=\"/products/safe_keeping.aspx\">Safekeeping</a></li>\r\n
         | 
| 137 | 
            +
                    \         <li><a href=\"/products/night_depository.aspx\">Night Depository</a></li>\r\n
         | 
| 138 | 
            +
                    \         <li><a href=\"/products/standing_orders.aspx\">Standing Orders</a></li>\r\n
         | 
| 139 | 
            +
                    \         <li><a href=\"/products/letters_of_undertaking.aspx\">Letters of
         | 
| 140 | 
            +
                    Undertaking</a></li>\r\n        </ul>\r\n      </li>\r\n    </ul>\r\n  </li>\r\n
         | 
| 141 | 
            +
                    \ <li><a href=\"/business_banking/index.aspx\" class=\"p7PMtrg\">BUSINESS
         | 
| 142 | 
            +
                    BANKING</a>\r\n    <ul>\r\n      <li><a href=\"/business_banking/savings.aspx\"
         | 
| 143 | 
            +
                    class=\"p7PMtrg\">Savings Accounts</a>\r\n        <ul>\r\n          <li><a
         | 
| 144 | 
            +
                    href=\"/products/corporate_savings.aspx\">Corporate Savings</a></li>\r\n        </ul>\r\n
         | 
| 145 | 
            +
                    \     </li>\r\n      <li><a href=\"/business_banking/chequing.aspx\" class=\"p7PMtrg\">Chequing
         | 
| 146 | 
            +
                    Accounts</a>\r\n        <ul>\r\n          <li><a href=\"/products/corporate_chequing.aspx\">Corporate
         | 
| 147 | 
            +
                    Chequing</a></li>\r\n          <li><a href=\"/products/corporate_money_market.aspx\">Corporate
         | 
| 148 | 
            +
                    Money Market</a></li>\r\n          <li><a href=\"/products/foreign_currency_chequing.aspx\">Foreign
         | 
| 149 | 
            +
                    Currency Chequing</a></li>\r\n        </ul>\r\n      </li>\r\n      <li><a
         | 
| 150 | 
            +
                    href=\"/business_banking/loans.aspx\" class=\"p7PMtrg\">Loans & Credit</a>\r\n
         | 
| 151 | 
            +
                    \       <ul>\r\n          <li><a href=\"/products/structured_financing_loan.aspx\">Structured
         | 
| 152 | 
            +
                    Financing</a></li>\r\n          <li><a href=\"/products/insurance_premium_financing.aspx\">Insurance
         | 
| 153 | 
            +
                    Premium Financing</a></li>\r\n          <li><a href=\"/products/line_of_credit.aspx\">Line
         | 
| 154 | 
            +
                    of Credit</a></li>\r\n          <li><a href=\"/products/commercial_loan.aspx\">Commercial
         | 
| 155 | 
            +
                    Loans</a></li>\r\n          <li><a href=\"/products/bankers_guarantee.aspx\">Banker's
         | 
| 156 | 
            +
                    Guarantees/Indemnities</a></li>\r\n          <li><a href=\"/products/loans_from_exim_bank.aspx\">Loans
         | 
| 157 | 
            +
                    from the EX-IM Bank</a></li>\r\n          <li><a href=\"/products/construction_loan.aspx\">Construction
         | 
| 158 | 
            +
                    Loans</a></li>\r\n          <li><a href=\"/products/go_green_energy_saver_loan.aspx\">Go
         | 
| 159 | 
            +
                    Green Energy Saver</a></li>\r\n          <li><a href=\"/products/bond_extension_support.aspx\">Bond
         | 
| 160 | 
            +
                    Extension Support Loan</a></li>\r\n        </ul>\r\n      </li>\r\n      <li><a
         | 
| 161 | 
            +
                    href=\"/business_banking/credit_cards.aspx\" class=\"p7PMtrg\">Credit Cards</a>\r\n
         | 
| 162 | 
            +
                    \       <ul>\r\n          <li><a href=\"http://rewards.firstglobal-bank.com/credit_cards/visa_corporate.aspx\">Visa
         | 
| 163 | 
            +
                    Corporate</a></li>\r\n          <li><a href=\"http://rewards.firstglobal-bank.com/credit_cards/visa_business.aspx\">Visa
         | 
| 164 | 
            +
                    Business</a></li>\r\n          <li><a href=\"/personal_banking/credit_security.aspx\">Card
         | 
| 165 | 
            +
                    Security</a></li>\r\n          <li><a href=\"/personal_banking/credit_balance_transfer.aspx\">Balance
         | 
| 166 | 
            +
                    Transfer</a></li>\r\n          <!--li><a href=\"#\">FGB Balance Insurance</a></li-->\r\n
         | 
| 167 | 
            +
                    \         <!--li><a href=\"/personal_banking/card_protection.aspx\">Card Protection</a></li-->\r\n
         | 
| 168 | 
            +
                    \         <li><a href=\"/personal_banking/terms_conditions.aspx\">Terms &
         | 
| 169 | 
            +
                    Conditions</a></li>\r\n          <li><a href=\"/business_banking/apply_online.aspx\">Apply
         | 
| 170 | 
            +
                    Online</a></li>\r\n          <li><a href=\"/personal_banking/credit_faqs.aspx\">FAQs</a></li>\r\n
         | 
| 171 | 
            +
                    \         <li><a href=\"/online_banking/login.aspx\">View Online Transactions</a></li>\r\n
         | 
| 172 | 
            +
                    \         <li><a href=\"/online_banking/login.aspx\">Enroll for Online Banking</a></li>\r\n
         | 
| 173 | 
            +
                    \         <li><a href=\"/personal_banking/credit_education.aspx\">Credit Education</a></li>\r\n
         | 
| 174 | 
            +
                    \       </ul>\r\n      </li>\r\n      <li><a href=\"/business_banking/general_banking_solutions.aspx\"
         | 
| 175 | 
            +
                    class=\"p7PMtrg\">General Banking Solutions</a>\r\n        <ul>\r\n          <li><a
         | 
| 176 | 
            +
                    href=\"/products/global_direct.aspx\">GlobalDirect</a></li>\r\n          <li><a
         | 
| 177 | 
            +
                    href=\"/products/global_pay.aspx\">Global Pay</a></li>\r\n          <li><a
         | 
| 178 | 
            +
                    href=\"/products/foreign_exchange_trading.aspx\">Foreign Exchange Trading</a></li>\r\n
         | 
| 179 | 
            +
                    \         <li><a href=\"/online_banking/index.aspx\">Online Banking</a></li>\r\n
         | 
| 180 | 
            +
                    \         <li><a href=\"/products/letters_of_credit.aspx\">Letters of Credit</a></li>\r\n
         | 
| 181 | 
            +
                    \         <li><a href=\"/products/letters_of_undertaking.aspx#\">Letters of
         | 
| 182 | 
            +
                    Undertaking</a></li>\r\n          <li><a href=\"/products/wire_transfers.aspx\">Wire
         | 
| 183 | 
            +
                    Transfers</a></li>\r\n          <li><a href=\"/products/drafts_managers_cheques.aspx\">Drafts
         | 
| 184 | 
            +
                    & Manager's Cheques</a></li>\r\n          <li><a href=\"/products/travellers_cheques.aspx\">Traveller's
         | 
| 185 | 
            +
                    Cheques</a></li>\r\n          <li><a href=\"/products/certification_of_balances.aspx\">Certification
         | 
| 186 | 
            +
                    of Balances</a></li>\r\n          <li><a href=\"/products/safe_keeping.aspx\">Safekeeping</a></li>\r\n
         | 
| 187 | 
            +
                    \         <li><a href=\"/products/night_depository.aspx\">Night Depository</a></li>\r\n
         | 
| 188 | 
            +
                    \         <li><a href=\"/products/standing_orders.aspx\">Standing Orders</a></li>\r\n
         | 
| 189 | 
            +
                    \       </ul>\r\n      </li>\r\n    </ul>\r\n  </li>\r\n  <br />\r\n  <li><a
         | 
| 190 | 
            +
                    href=\"/categories/savings.aspx\" class=\"p7PMtrg\">SAVINGS</a>\r\n    <ul>\r\n
         | 
| 191 | 
            +
                    \     <li><a href=\"/products/statement_savings.aspx\">Statement</a></li>\r\n
         | 
| 192 | 
            +
                    \     <li><a href=\"/products/premier_savings.aspx\">US$ Premier</a></li>\r\n
         | 
| 193 | 
            +
                    \     <li><a href=\"/products/taxfree_deposit.aspx\">Tax-free Deposit</a></li>\r\n
         | 
| 194 | 
            +
                    \     <li><a href=\"/products/corporate_savings.aspx\">Corporate Savings</a></li>\r\n
         | 
| 195 | 
            +
                    \     <li><a href=\"/products/global_kids_teens.aspx\">Global Kids/Teens</a></li>\r\n
         | 
| 196 | 
            +
                    \     <li><a href=\"/products/global_savers_club.aspx\">Global Savers Club</a></li>\r\n
         | 
| 197 | 
            +
                    \   </ul>\r\n  </li>\r\n  <li><a href=\"/categories/high_yield_options.aspx\"
         | 
| 198 | 
            +
                    class=\"p7PMtrg\">HIGH YIELD OPTIONS</a>\r\n    <ul>\r\n      <!--li><a href=\"/products/long_term_savings.aspx\">Long
         | 
| 199 | 
            +
                    Term Savings Account</a></li-->\r\n      <li><a href=\"/products/certificates_of_deposit.aspx\">Certificates
         | 
| 200 | 
            +
                    of Deposit</a></li>\r\n      <li><a href=\"/products/type_a_account.aspx\">Type
         | 
| 201 | 
            +
                    \"A\" Account</a></li>\r\n    </ul>\r\n  </li>\r\n  <li><a href=\"/categories/loans.aspx\"
         | 
| 202 | 
            +
                    class=\"p7PMtrg\">LOANS & CREDIT</a>\r\n    <ul>\r\n      <li><a href=\"/products/double_yuh_money.aspx\">Double
         | 
| 203 | 
            +
                    Yuh Money</a></li>\r\n      <li><a href=\"/products/car_loan.aspx\">Motor
         | 
| 204 | 
            +
                    Vehicle</a></li>\r\n      <li><a href=\"/products/education_loan.aspx\">Education</a></li>\r\n
         | 
| 205 | 
            +
                    \     <li><a href=\"/products/go_green_energy_saver_loan.aspx\">Go Green Energy
         | 
| 206 | 
            +
                    Saver</a></li>\r\n      <li><a href=\"/products/home_equity.aspx\">Home Equity</a></li>\r\n
         | 
| 207 | 
            +
                    \      <li><a href=\"/products/home_equity_lines_of_credit.aspx\">Home Equity
         | 
| 208 | 
            +
                    Lines of Credit</a></li>\r\n      <li><a href=\"/products/pb_insurance_premium_financing.aspx\">Personal
         | 
| 209 | 
            +
                    Insurance Premium Financing</a></li>\r\n      <li><a href=\"/products/insurance_premium_financing.aspx\">Business
         | 
| 210 | 
            +
                    Insurance Premium Financing</a></li>\r\n      <li><a href=\"/products/overdraft_protection_plan.aspx\">Overdraft
         | 
| 211 | 
            +
                    Protection Plan</a></li>    \r\n      <li><a href=\"/products/structured_financing_loan.aspx\">Structured
         | 
| 212 | 
            +
                    Financing</a></li>\r\n      <li><a href=\"/products/insurance_premium_financing.aspx\">Insurance
         | 
| 213 | 
            +
                    Premium Financing</a></li>\r\n      <li><a href=\"/products/line_of_credit.aspx\">Line
         | 
| 214 | 
            +
                    of Credit</a></li>\r\n      <li><a href=\"/products/commercial_loan.aspx\">Commercial
         | 
| 215 | 
            +
                    Loans</a></li>\r\n      <li><a href=\"/products/bankers_guarantee.aspx\">Banker's
         | 
| 216 | 
            +
                    Guarantees/Indemnities</a></li>\r\n      <li><a href=\"/products/loans_from_exim_bank.aspx\">Loans
         | 
| 217 | 
            +
                    from the EX-IM Bank</a></li>\r\n      <li><a href=\"/products/construction_loan.aspx\">Construction
         | 
| 218 | 
            +
                    Loans</a></li>\r\n      <li><a href=\"/products/bond_extension_support.aspx\">Bond
         | 
| 219 | 
            +
                    Extension Support Loan</a></li>\r\n    </ul>\r\n  </li>\r\n  <li><a href=\"/categories/credit_cards.aspx\"
         | 
| 220 | 
            +
                    class=\"p7PMtrg\">CREDIT CARDS</a>\r\n    <ul>\r\n      <li><a href=\"http://rewards.firstglobal-bank.com/credit_cards/visa_gold.aspx\">Visa
         | 
| 221 | 
            +
                    Gold</a></li>\r\n      <li><a href=\"http://rewards.firstglobal-bank.com/credit_cards/visa_classic.aspx\">Visa
         | 
| 222 | 
            +
                    Classic</a></li>\r\n      <li><a href=\"http://rewards.firstglobal-bank.com/credit_cards/visa_platinum.aspx\">Visa
         | 
| 223 | 
            +
                    Platinum</a></li>\r\n      <li><a href=\"http://rewards.firstglobal-bank.com/credit_cards/jccul_visa_classic.aspx\">JCCUL
         | 
| 224 | 
            +
                    Classic Card</a></li>\r\n      <li><a href=\"http://rewards.firstglobal-bank.com/credit_cards/visa_business.aspx\">Visa
         | 
| 225 | 
            +
                    Business</a></li>\r\n      <li><a href=\"http://rewards.firstglobal-bank.com/credit_cards/visa_corporate.aspx\">Visa
         | 
| 226 | 
            +
                    Corporate</a></li>\r\n    </ul>\r\n  </li>\r\n  <li><a href=\"/categories/chequing.aspx\"
         | 
| 227 | 
            +
                    class=\"p7PMtrg\">CHEQUING</a>\r\n    <ul>\r\n      <li><a href=\"/products/foreign_currency_chequing.aspx\">Personal
         | 
| 228 | 
            +
                    Foreign Currency</a></li>\r\n      <li><a href=\"/products/money_market_chequing.aspx\">Personal
         | 
| 229 | 
            +
                    Money Market</a></li>\r\n      <li><a href=\"/products/interest_chequing.aspx\">Interest
         | 
| 230 | 
            +
                    Chequing</a></li>\r\n      <li><a href=\"/products/corporate_chequing.aspx\">Corporate
         | 
| 231 | 
            +
                    Chequing</a></li>\r\n      <li><a href=\"/products/corporate_money_market.aspx\">Corporate
         | 
| 232 | 
            +
                    Money Market</a></li>\r\n      <li><a href=\"/products/corporate_foreign_currency_chequing.aspx\">Corporate
         | 
| 233 | 
            +
                    Foreign Currency</a></li>\r\n    </ul>\r\n  </li>\r\n  <li><a href=\"/categories/general_banking_solutions.aspx\"
         | 
| 234 | 
            +
                    class=\"p7PMtrg\">GENERAL SOLUTIONS</a>\r\n    <ul>\r\n      <li><a href=\"/products/global_direct.aspx\">GlobalDirect</a></li>\r\n
         | 
| 235 | 
            +
                    \     <li><a href=\"/products/global_pay.aspx\">Global Pay</a></li>\r\n      <li><a
         | 
| 236 | 
            +
                    href=\"/products/debit_card_abm.aspx\">Debit Card & ABM facilities</a></li>\r\n
         | 
| 237 | 
            +
                    \     <li><a href=\"/online_banking/index.aspx\">Online Banking</a></li>\r\n
         | 
| 238 | 
            +
                    \     <li><a href=\"/products/foreign_exchange_trading.aspx\">Foreign Exchange
         | 
| 239 | 
            +
                    Trading</a></li>\r\n      <li><a href=\"/products/safety_deposit.aspx\">Safe
         | 
| 240 | 
            +
                    Deposit Boxes</a></li>\r\n      <li><a href=\"/products/wire_transfers.aspx\">Wire
         | 
| 241 | 
            +
                    Transfers</a></li>\r\n      <li><a href=\"/products/drafts_managers_cheques.aspx\">Drafts
         | 
| 242 | 
            +
                    & Manager's Cheques</a></li>\r\n      <li><a href=\"/products/travellers_cheques.aspx\">Traveller's
         | 
| 243 | 
            +
                    Cheques</a></li>\r\n      <li><a href=\"/products/certification_of_balances.aspx\">Certification
         | 
| 244 | 
            +
                    of Balances</a></li>\r\n      <li><a href=\"/products/safe_keeping.aspx\">Safekeeping</a></li>\r\n
         | 
| 245 | 
            +
                    \     <li><a href=\"/products/letters_of_credit.aspx\">Letters of Credit</a></li>\r\n
         | 
| 246 | 
            +
                    \     <li><a href=\"/products/night_depository.aspx\">Night Depository</a></li>\r\n
         | 
| 247 | 
            +
                    \     <li><a href=\"/products/standing_orders.aspx\">Standing Orders</a></li>\r\n
         | 
| 248 | 
            +
                    \     <li><a href=\"/products/letters_of_undertaking.aspx\">Letters of Undertaking</a></li>\r\n
         | 
| 249 | 
            +
                    \   </ul>\r\n  </li>\r\n  <br />\r\n  <li><a href=\"/customer_service/introduction.aspx\"
         | 
| 250 | 
            +
                    class=\"p7PMtrg\">CUSTOMER SERVICE</a>\r\n    <ul>\r\n      <li><a href=\"#\"
         | 
| 251 | 
            +
                    class=\"p7PMtrg\">Interest Rates</a>\r\n      \t<ul>\r\n          <li><a href=\"/customer_service/rates_deposit.aspx\">Deposit
         | 
| 252 | 
            +
                    Rates</a></li>\r\n          <li><a href=\"/customer_service/rates_savings.aspx\">Savings
         | 
| 253 | 
            +
                    Rates</a></li>\r\n          <li><a href=\"/customer_service/rates_chequing.aspx\">Chequing
         | 
| 254 | 
            +
                    Rates</a></li>\r\n        </ul>\r\n      </li>\r\n      <li><a href=\"#\"
         | 
| 255 | 
            +
                    class=\"p7PMtrg\">Application Forms</a>\r\n        <ul>\r\n          <li><a
         | 
| 256 | 
            +
                    href=\"/secure/forms/depositacc.aspx\">Personal Savings Account</a></li>\r\n
         | 
| 257 | 
            +
                    \         <li><a href=\"/secure/forms/nonpersonalaccounts.aspx\">Business
         | 
| 258 | 
            +
                    Savings Account</a></li>\r\n          <li><a href=\"/secure/forms/depositacc.aspx\">Personal
         | 
| 259 | 
            +
                    Chequing Account</a></li>\r\n          <li><a href=\"/secure/forms/nonpersonalaccounts.aspx\">Business
         | 
| 260 | 
            +
                    Chequing Account</a></li>\r\n          <li><a href=\"/secure/forms/DebitCardAcceptanceForm.aspx\">Debit
         | 
| 261 | 
            +
                    Card</a></li>\r\n          <li><a href=\"/secure/forms/depositacc.aspx\">Personal
         | 
| 262 | 
            +
                    Term Deposits</a></li>\r\n          <li><a href=\"/secure/forms/nonpersonalaccounts.aspx\">Business
         | 
| 263 | 
            +
                    Term Deposits</a></li>\r\n          <li><a href=\"/secure/forms/VisaCreditCardApplicationForm.aspx\">Personal
         | 
| 264 | 
            +
                    Credit Cards</a></li>\r\n          <li><a href=\"/secure/forms/companycreditcard.aspx\">Business
         | 
| 265 | 
            +
                    Credit Cards</a></li>\r\n          <li><a href=\"/secure/forms/loanapplication.aspx\">Personal
         | 
| 266 | 
            +
                    Loans</a></li>\r\n          <li><a href=\"/secure/forms/loanapplication_business.aspx\">Business
         | 
| 267 | 
            +
                    Loans</a></li>          \r\n          <li><a href=\"/secure/forms/internetbanking.aspx\">Online
         | 
| 268 | 
            +
                    Banking Contract</a></li>\r\n          <li><a href=\"/secure/forms/internetbanking.aspx\">Add
         | 
| 269 | 
            +
                    New User - Online Banking</a></li>\r\n          <li><a href=\"/secure/forms/internetbanking.aspx\">Add
         | 
| 270 | 
            +
                    New Account - Online Banking</a></li>\r\n        </ul>\r\n      </li>\r\n
         | 
| 271 | 
            +
                    \     <!--li><a href=\"/branches/corporate.aspx\" class=\"p7PMtrg\">Contact
         | 
| 272 | 
            +
                    Us</a>\r\n        <ul>\r\n          <li><a href=\"/branches/corporate.aspx\">Business
         | 
| 273 | 
            +
                    Hours</a></li>\r\n          <li><a href=\"/branches/corporate.aspx\">Phone</a></li>\r\n
         | 
| 274 | 
            +
                    \         <li><a href=\"/branches/corporate.aspx\">Location</a></li>\r\n          <li><a
         | 
| 275 | 
            +
                    href=\"/branches/corporate.aspx\">Postal Mail</a></li>\r\n        </ul>\r\n
         | 
| 276 | 
            +
                    \     </li-->\r\n      <li><a href=\"/customer_service/diaspora.aspx\">Diaspora</a></li>\r\n
         | 
| 277 | 
            +
                    \     <li><a href=\"/branches/corporate.aspx\">Contact Us</a></li>\r\n      <li><a
         | 
| 278 | 
            +
                    href=\"#\" class=\"p7PMtrg\">Online Account Services</a>\r\n        <ul>\r\n
         | 
| 279 | 
            +
                    \         <li><a href=\"/customer_service/activate_card.aspx\">Activate Card</a></li>\r\n
         | 
| 280 | 
            +
                    \         <li><a href=\"/customer_service/add_change_email_address.aspx\">Add/Change
         | 
| 281 | 
            +
                    Email Address</a></li>\r\n          <li><a href=\"/customer_service/change_address.aspx\">Change
         | 
| 282 | 
            +
                    Address</a></li>\r\n          <li><a href=\"/customer_service/ask_a_question.aspx\">Ask
         | 
| 283 | 
            +
                    a Question</a></li>\r\n          <li><a href=\"/customer_service/reorder_cheques.aspx\">Re-order
         | 
| 284 | 
            +
                    Cheques</a></li>\r\n          <li><a href=\"/customer_service/request_copies_of_cheque_drafts.aspx\">Request
         | 
| 285 | 
            +
                    copies of cheques/drafts</a></li>\r\n          <li><a href=\"/customer_service/request_copies_of_statements.aspx\">Request
         | 
| 286 | 
            +
                    copies of statements</a></li>\r\n          <li><a href=\"/customer_service/stop_payment_on_cheques.aspx\">Stop
         | 
| 287 | 
            +
                    Payment on Cheques</a></li>\r\n          <!--li><a href=\"/customer_service/order_travellers_cheques.aspx\">Order
         | 
| 288 | 
            +
                    Travellers Cheques</a></li-->\r\n        </ul>\r\n      </li>\r\n      <li><a
         | 
| 289 | 
            +
                    href=\"#\" class=\"p7PMtrg\">Frequently Asked Questions</a>\r\n        <ul>\r\n
         | 
| 290 | 
            +
                    \         <li><a href=\"/customer_service/general_faqs.aspx\">General</a></li>\r\n
         | 
| 291 | 
            +
                    \         <li><a href=\"/customer_service/loans_faqs.aspx\">Loans</a></li>\r\n
         | 
| 292 | 
            +
                    \         <li><a href=\"/customer_service/savings_faqs.aspx\">Savings</a></li>\r\n
         | 
| 293 | 
            +
                    \         <li><a href=\"/customer_service/chequing_faqs.aspx\">Chequing</a></li>\r\n
         | 
| 294 | 
            +
                    \       </ul>\r\n      </li>\r\n      <li><a href=\"/calculators/calculators.aspx\">Calculators</a></li>\r\n
         | 
| 295 | 
            +
                    \   </ul>\r\n  </li>\r\n  <li><a href=\"/online_banking/index.aspx\" class=\"p7PMtrg\">ONLINE
         | 
| 296 | 
            +
                    BANKING</a>\r\n    <ul>\r\n      <li><a href=\"/online_banking/login.aspx\">Login</a></li>\r\n
         | 
| 297 | 
            +
                    \     <li><a href=\"#\" class=\"p7PMtrg\">Online Service Guarantee</a>\r\n
         | 
| 298 | 
            +
                    \       <ul>\r\n          <li><a href=\"/online_banking/banking_agreement.aspx\">Online
         | 
| 299 | 
            +
                    Banking Agreement</a></li>\r\n          <li><a href=\"/online_banking/responsibility.aspx\">Customer
         | 
| 300 | 
            +
                    Responsibility</a></li>\r\n        </ul>\r\n      </li>\r\n      <li><a href=\"/fraud/mobile_security.aspx\">Privacy
         | 
| 301 | 
            +
                    & Security</a></li>\r\n      <li><a href=\"/online_banking/requirements.aspx\">System
         | 
| 302 | 
            +
                    Requirements</a></li>\r\n      <!--li><a href=\"/online_banking/payments_transfers.aspx\">Payments
         | 
| 303 | 
            +
                    and Transfers</a></li-->\r\n      <li><a href=\"#\" class=\"p7PMtrg\">Frequently
         | 
| 304 | 
            +
                    Asked Questions</a>\r\n        <ul>\r\n          <li><a href=\"/online_banking/faq_general.aspx\">General
         | 
| 305 | 
            +
                    Information</a></li>\r\n          <li><a href=\"/online_banking/faq_enrollment.aspx\">Enrollment</a></li>\r\n
         | 
| 306 | 
            +
                    \         <li><a href=\"/online_banking/faq_how_to_login.aspx\">Login</a></li>\r\n
         | 
| 307 | 
            +
                    \         <li><a href=\"/online_banking/faq_online_billpay.aspx\">Bill Payment</a></li>\r\n
         | 
| 308 | 
            +
                    \         <!--li><a href=\"/online_banking/faq_top_questions.aspx\">Top Questions</a></li-->\r\n
         | 
| 309 | 
            +
                    \       </ul>\r\n      </li>\r\n    </ul>\r\n  </li>\r\n  <li><a class=\"p7PMtrg\"
         | 
| 310 | 
            +
                    href=\"javascript: void(0)\"   onclick=\"window.open('/online_bank_demo/_swf/mainmenu.swf',
         | 
| 311 | 
            +
                    'FGB_Online_Banking_Demo','width=1007,height=500'); return false;\">ONLINE
         | 
| 312 | 
            +
                    BANKING DEMO</a>\r\n    <ul>\r\n      <li><a href=\"javascript: void(0)\"
         | 
| 313 | 
            +
                    \  onclick=\"window.open('/online_bank_demo/_swf/cobmodule.swf', 'FGB_Consumer_Online_Banking_Demo','width=1007,height=500');
         | 
| 314 | 
            +
                    return false;\">Consumer Online Banking</a></li>\r\n      <li><a href=\"javascript:
         | 
| 315 | 
            +
                    void(0)\"   onclick=\"window.open('/online_bank_demo/_swf/bobmodule.swf',
         | 
| 316 | 
            +
                    'FGB_Business_Online_Banking_Demo','width=1007,height=500'); return false;\">Business
         | 
| 317 | 
            +
                    Online Banking</a></li>\r\n    </ul>\r\n  </li>\r\n  <li><a href=\"/planning_learning/introduction.aspx\"
         | 
| 318 | 
            +
                    class=\"p7PMtrg\">PLANNING & LEARNING</a>\r\n    <ul>\r\n      <li><a
         | 
| 319 | 
            +
                    href=\"#\" class=\"p7PMtrg\">College Planning</a>\r\n        <ul>\r\n        <li><a
         | 
| 320 | 
            +
                    href=\"/planning_learning/getting_started.aspx\">Getting Started</a></li>\r\n
         | 
| 321 | 
            +
                    \       <li><a href=\"/planning_learning/paying_for_college.aspx\">Paying
         | 
| 322 | 
            +
                    for College</a></li>\r\n        <li><a href=\"/planning_learning/planning_after_college.aspx\">Planning
         | 
| 323 | 
            +
                    after College</a></li>\r\n        <li><a href=\"/calculators/savings_calculator.aspx\">Savings
         | 
| 324 | 
            +
                    Calculator</a></li>\r\n        </ul>\r\n      </li>\r\n      <!--li><a href=\"#\"
         | 
| 325 | 
            +
                    class=\"p7PMtrg\">Home Buying</a>\r\n        <ul>\r\n          <li><a href=\"/planning_learning/introduction.aspx\">Introduction</a></li>\r\n<li><a
         | 
| 326 | 
            +
                    href=\"/calculators/mortgage_calculator.aspx\">Mortgage Calculator</a></li>\r\n<li><a
         | 
| 327 | 
            +
                    href=\"/planning_learning/moving_into_a_home.aspx\">Moving into a Home</a></li>\r\n<li><a
         | 
| 328 | 
            +
                    href=\"/planning_learning/financing_your_home.aspx\">Financing Your Home</a></li>\r\n<li><a
         | 
| 329 | 
            +
                    href=\"/planning_learning/rent_vs_buying.aspx\">Rent vs Buying</a></li>\r\n<li><a
         | 
| 330 | 
            +
                    href=\"/planning_learning/what_to_know_about_buying.aspx\">What to Know about
         | 
| 331 | 
            +
                    Buying?</a></li>\r\n<li><a href=\"/planning_learning/what_to_know_about_selling.aspx\">What
         | 
| 332 | 
            +
                    to Know about Selling?</a></li>\r\n<li><a href=\"/planning_learning/glossary_home_buying.aspx\">Glossary</a></li>\r\n
         | 
| 333 | 
            +
                    \       </ul>\r\n      </li-->\r\n      <li><a href=\"#\" class=\"p7PMtrg\">Retirement
         | 
| 334 | 
            +
                    Planning</a>\r\n        <ul>\r\n          <li><a href=\"/planning_learning/begin_planning_retirement.aspx\">Begin
         | 
| 335 | 
            +
                    Planning for Retirement</a></li>\r\n          <li><a href=\"/planning_learning/evaluate_your_retirement_plan.aspx\">Evaluate
         | 
| 336 | 
            +
                    Your Retirement Plan</a></li>\r\n          <li><a href=\"/planning_learning/changing_jobs.aspx\">Changing
         | 
| 337 | 
            +
                    Jobs</a></li>\r\n          <li><a href=\"/planning_learning/already_retired.aspx\">Already
         | 
| 338 | 
            +
                    Retired</a></li>\r\n          <li><a href=\"/calculators/retirement_calculator.aspx\">Retirement
         | 
| 339 | 
            +
                    Calculator</a></li>\r\n          <li><a href=\"/planning_learning/retirement_faqs.aspx\">FAQs</a></li>\r\n
         | 
| 340 | 
            +
                    \       </ul>\r\n      </li>\r\n      <!--li><a href=\"#\" class=\"p7PMtrg\">Investing
         | 
| 341 | 
            +
                    Basics</a>\r\n        <ul>\r\n          <li><a href=\"/planning_learning/investing_getting_started.aspx\">Getting
         | 
| 342 | 
            +
                    Started</a></li>\r\n          <li><a href=\"/planning_learning/investment_goals.aspx\">Investment
         | 
| 343 | 
            +
                    Goals</a></li>\r\n          <li><a href=\"/planning_learning/investment_choices.aspx\">Investment
         | 
| 344 | 
            +
                    Choices</a></li>\r\n          <li><a href=\"/planning_learning/portfolio_management.aspx\">Portfolio
         | 
| 345 | 
            +
                    Management</a></li>\r\n        </ul>\r\n      </li-->\r\n      <li><a href=\"#\"
         | 
| 346 | 
            +
                    class=\"p7PMtrg\">Money Management Basics</a>\r\n        <ul>\r\n          <li><a
         | 
| 347 | 
            +
                    href=\"/planning_learning/budgeting_tips.aspx\">Budgeting Tips</a></li>\r\n
         | 
| 348 | 
            +
                    \         <!--li><a href=\"#\">Financial Protection</a></li-->\r\n          <li><a
         | 
| 349 | 
            +
                    href=\"/planning_learning/debt_consolidation.aspx\">Debt Consolidation</a></li>\r\n
         | 
| 350 | 
            +
                    \         <li><a href=\"/calculators/budget_calculator.aspx\">Budget Calculator</a></li>\r\n
         | 
| 351 | 
            +
                    \       </ul>\r\n      </li>\r\n    </ul>\r\n  </li>\r\n  <li><a href=\"/branches/jamaica.aspx\"
         | 
| 352 | 
            +
                    class=\"p7PMtrg\">BRANCHES</a>\r\n    <ul>\r\n      <li><a href=\"/branches/corporate.aspx\">Corporate</a></li>\r\n
         | 
| 353 | 
            +
                    \     <li><a href=\"/branches/downtown.aspx\">Duke & Harbour</a></li>\r\n
         | 
| 354 | 
            +
                    \     <li><a href=\"/branches/new_kingston.aspx\">New Kingston</a></li>\r\n
         | 
| 355 | 
            +
                    \     <li><a href=\"/branches/liguanea.aspx\">Liguanea</a></li>\r\n      <li><a
         | 
| 356 | 
            +
                    href=\"/branches/manor_park.aspx\">Manor Park</a></li>\r\n      <li><a href=\"/branches/mandeville.aspx\">Mandeville</a></li>\r\n
         | 
| 357 | 
            +
                    \     <li><a href=\"/branches/montego_bay.aspx\">Montego Bay</a></li>\r\n
         | 
| 358 | 
            +
                    \   </ul>\r\n  </li>\r\n  <li><a href=\"#\" class=\"p7PMtrg\">ONLINE APPLICATIONS</a>\r\n
         | 
| 359 | 
            +
                    \   <ul>\r\n      <li><a href=\"#\" class=\"p7PMtrg\">Personal</a>\r\n        <ul>\r\n
         | 
| 360 | 
            +
                    \         <li><a href=\"/secure/forms/depositacc.aspx\">Savings Account</a></li>\r\n
         | 
| 361 | 
            +
                    \         <li><a href=\"/secure/forms/depositacc.aspx\">Chequing Account</a></li>\r\n
         | 
| 362 | 
            +
                    \         <li><a href=\"/secure/forms/DebitCardAcceptanceForm.aspx\">Debit
         | 
| 363 | 
            +
                    Card</a></li>\r\n          <li><a href=\"/secure/forms/depositacc.aspx\">Term
         | 
| 364 | 
            +
                    Deposits</a></li>\r\n          <li><a href=\"/secure/forms/VisaCreditCardApplicationForm.aspx\">Credit
         | 
| 365 | 
            +
                    Cards</a></li>\r\n         <li><a href=\"/secure/forms/loanapplication.aspx\">Loans</a></li>\r\n
         | 
| 366 | 
            +
                    \         <li><a href=\"/secure/forms/internetbanking.aspx\">Internet Banking
         | 
| 367 | 
            +
                    Contract</a></li>\r\n          <li><a href=\"/secure/forms/internetbanking.aspx\">Add
         | 
| 368 | 
            +
                    a New User (Online Banking)</a></li>\r\n          <li><a href=\"/secure/forms/internetbanking.aspx\">Add
         | 
| 369 | 
            +
                    a New Account (Online Banking)</a></li>\r\n        </ul>\r\n      </li>\r\n
         | 
| 370 | 
            +
                    \     <li><a href=\"#\" class=\"p7PMtrg\">Business</a>\r\n        <ul>\r\n
         | 
| 371 | 
            +
                    \         <li><a href=\"/secure/forms/nonpersonalaccounts.aspx\">Savings Account</a></li>\r\n
         | 
| 372 | 
            +
                    \         <li><a href=\"/secure/forms/nonpersonalaccounts.aspx\">Chequing
         | 
| 373 | 
            +
                    Account</a></li>\r\n          <li><a href=\"/secure/forms/DebitCardAcceptanceForm.aspx\">Debit
         | 
| 374 | 
            +
                    Card</a></li>\r\n          <li><a href=\"/secure/forms/nonpersonalaccounts.aspx\">Term
         | 
| 375 | 
            +
                    Deposits</a></li>\r\n          <li><a href=\"/secure/forms/companycreditcard.aspx\">Credit
         | 
| 376 | 
            +
                    Cards</a></li>\r\n          <li><a href=\"/secure/forms/loanapplication_business.aspx\">Loans</a></li>\r\n
         | 
| 377 | 
            +
                    \         <li><a href=\"/secure/forms/internetbanking.aspx\">Internet Banking
         | 
| 378 | 
            +
                    Contract</a></li>\r\n          <li><a href=\"/secure/forms/internetbanking.aspx\">Add
         | 
| 379 | 
            +
                    a New User (Online Banking)</a></li>\r\n          <li><a href=\"/secure/forms/internetbanking.aspx\">Add
         | 
| 380 | 
            +
                    a New Account (Online Banking)</a></li>\r\n        </ul>\r\n      </li>\r\n
         | 
| 381 | 
            +
                    \   </ul>\r\n  </li>\r\n  <!--[if lte IE 6]><style>#p7PMnav a{height:1em;}#p7PMnav
         | 
| 382 | 
            +
                    li{height:1em;float:left;clear:both;width:100%}</style><![endif]-->\r\n  <!--[if
         | 
| 383 | 
            +
                    IE 6]><style>#p7PMnav li{clear:none;}</style><![endif]-->\r\n  <!--[if IE
         | 
| 384 | 
            +
                    7]><style>#p7PMnav a{zoom:100%;}#p7PMnav li{float:left;clear:both;width:100%;}</style><![endif]-->\r\n</ul>\r\n<div
         | 
| 385 | 
            +
                    id=\"google_search\">\r\n<form action=\"http://www.google.com/cse\" id=\"cse-search-box\">\r\n<div>\r\n
         | 
| 386 | 
            +
                    \   <input type=\"hidden\" name=\"cx\" value=\"012720650344799034876:g2yuj7oq4aw\"
         | 
| 387 | 
            +
                    />\r\n    <input type=\"hidden\" name=\"ie\" value=\"UTF-8\" />\r\n    <input
         | 
| 388 | 
            +
                    type=\"text\" name=\"q\" />\r\n    <input class=\"submit\" type=\"submit\"
         | 
| 389 | 
            +
                    name=\"sa\" value=\"Search FG Now!\" />\r\n  </div>\r\n</form>\r\n<script
         | 
| 390 | 
            +
                    type=\"text/javascript\" src=\"http://www.google.com/coop/cse/brand?form=cse-search-box&lang=en\"></script>\r\n</div>\r\n
         | 
| 391 | 
            +
                    \   <!-- end #sidebar1 -->\r\n  </div>\r\n  <div id=\"sidebar2\">\r\n    <span><img
         | 
| 392 | 
            +
                    src=\"images/home_h1_promo.jpg\" alt=\" \" width=\"458\" height=\"90\" border=\"0\"
         | 
| 393 | 
            +
                    usemap=\"#Map\" />\r\n<map name=\"Map\" id=\"Map\"><area shape=\"rect\" coords=\"80,78,114,87\"
         | 
| 394 | 
            +
                    href=\"personal_banking/index.aspx\" />\r\n<area shape=\"rect\" coords=\"124,78,168,85\"
         | 
| 395 | 
            +
                    href=\"personal_banking/savings.aspx\" />\r\n<area shape=\"rect\" coords=\"180,78,216,86\"
         | 
| 396 | 
            +
                    href=\"personal_banking/loans.aspx\" />\r\n<area shape=\"rect\" coords=\"239,78,271,86\"
         | 
| 397 | 
            +
                    href=\"business_banking/index.aspx\" />\r\n<area shape=\"rect\" coords=\"282,79,328,88\"
         | 
| 398 | 
            +
                    href=\"business_banking/savings.aspx\" />\r\n<area shape=\"rect\" coords=\"341,78,378,86\"
         | 
| 399 | 
            +
                    href=\"business_banking/loans.aspx\" />\r\n</map></span>\r\n    <div id=\"fgb_home\">\r\n
         | 
| 400 | 
            +
                    \     <table width=\"458\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n
         | 
| 401 | 
            +
                    \       <tr>\r\n          <td valign=\"top\">            \r\n            <div
         | 
| 402 | 
            +
                    id=\"news_home\">\r\n              <h2>News</h2>\r\n              <!-- News
         | 
| 403 | 
            +
                    Items UC Here -->\r\n\t\t\t  \r\n           <div id=\"p7EPM_5\" class=\"p7EPM05\">\r\n
         | 
| 404 | 
            +
                    \                 <div id=\"p7EPMt_5\" class=\"p7epm_trigs\">\r\n                    <ul>\r\n
         | 
| 405 | 
            +
                    \                     <li class=\"t1\"><a href=\"#p7EPMc5_1\" id=\"p7EPMtrg5_1\">FGB</a>  </li>\r\n
         | 
| 406 | 
            +
                    \                     <li class=\"t2\"> <a href=\"#p7EPMc5_2\" id=\"p7EPMtrg5_2\">Local</a>  </li>\r\n
         | 
| 407 | 
            +
                    \                     <li class=\"t3\"> <a href=\"#p7EPMc5_3\" id=\"p7EPMtrg5_3\">International</a></li>\r\n
         | 
| 408 | 
            +
                    \                   </ul>\r\n                    <div class=\"p7epm_ie5clear\"> </div>\r\n
         | 
| 409 | 
            +
                    \                 </div>\r\n                  <div id=\"p7EPMdw_5\">\r\n                   \r\n
         | 
| 410 | 
            +
                    \                  \r\n          <ul>\r\n     \r\n                    <li><a
         | 
| 411 | 
            +
                    href=\"news/newsarticle.aspx?id=114&cat=1\">First Global Strengthens Literacy
         | 
| 412 | 
            +
                    Programme with Music Day</a></li> \r\n        \r\n                     <li><a
         | 
| 413 | 
            +
                    href=\"news/newsarticle.aspx?id=109&cat=1\">Reduction in ACH threshold effective
         | 
| 414 | 
            +
                    July 1, 2013</a></li> \r\n         \r\n                    <li><a href=\"news/newsarticle.aspx?id=98&cat=1\">First
         | 
| 415 | 
            +
                    Global Bank wins two awards from Global Banking and Finance Review</a></li>
         | 
| 416 | 
            +
                    \r\n        \r\n                     <li><a href=\"news/newsarticle.aspx?id=95&cat=1\">Revised
         | 
| 417 | 
            +
                    Multilink Fees and Charges</a></li> \r\n         \r\n          </ul>\r\n        \r\n\r\n\r\n
         | 
| 418 | 
            +
                    \                  \r\n                   \r\n                  </div>\r\n
         | 
| 419 | 
            +
                    \                 <!--[if IE 5]><style>.p7epm_trigs a {height: 1%;}.p7epm_ie5clear
         | 
| 420 | 
            +
                    {clear: both;}</style><![endif]-->\r\n                  <!--[if IE 6]><style>.p7epm_trigs,
         | 
| 421 | 
            +
                    .p7epm_trigs a {height: 1%;}</style><![endif]-->\r\n                  <script
         | 
| 422 | 
            +
                    type=\"text/javascript\">\r\n<!--\r\nP7_opEPM('p7EPM_5',1,2,1,1,0,1000);\r\n//-->\r\n
         | 
| 423 | 
            +
                    \               </script>\r\n                </div>\r\n\t\t\t\r\n\t\t   \r\n\t\t
         | 
| 424 | 
            +
                    \  \r\n            </div>\r\n            \r\n            \r\n            \r\n
         | 
| 425 | 
            +
                    \           \r\n            \r\n            <div id=\"news_bottom\"><a href=\"news/\">News
         | 
| 426 | 
            +
                    Archive</a> <a href=\"/news/fgbrss.aspx\" target=\"_blank\">Subscribe
         | 
| 427 | 
            +
                    <img src=\"images/rss.jpg\" alt=\"Subscribe to FGB RSS News Feed\" width=\"13\"
         | 
| 428 | 
            +
                    height=\"13\" border=\"0\" /></a><a href=\"/news/what-is-rss.aspx\">What is
         | 
| 429 | 
            +
                    RSS?</a><!--| <a href=\"#\">Videos</a> | <a href=\"#\">Photos</a>--></div>\r\n
         | 
| 430 | 
            +
                    \           <div id=\"promo1_home\">\r\n              <h2>Identity Theft</h2>\r\n
         | 
| 431 | 
            +
                    \             <span><a href=\"id_theft/index.aspx\"><img src=\"images/id_theft1.jpg\"
         | 
| 432 | 
            +
                    alt=\"Identity Theft\" width=\"67\" height=\"67\" border=\"0\" class=\"floatleft3\"
         | 
| 433 | 
            +
                    /></a></span>\r\n              <ul>\r\n                <li><a href=\"id_theft/index.aspx\">About
         | 
| 434 | 
            +
                    identity theft</a></li>\r\n                <li><a href=\"id_theft/solutions.aspx\">Identity
         | 
| 435 | 
            +
                    theft solutions</a></li>\r\n                <li><a href=\"id_theft/id_theft_quiz.aspx\">Identity
         | 
| 436 | 
            +
                    theft quiz</a></li>\r\n                <li><a href=\"id_theft/prevention.aspx\">Prevent
         | 
| 437 | 
            +
                    identity theft</a></li>\r\n              </ul>\r\n            </div>\r\n            <div
         | 
| 438 | 
            +
                    id=\"promo1_home\">\r\n              <h2>Fraud</h2>\r\n              <span><a
         | 
| 439 | 
            +
                    href=\"fraud/index.aspx\"><img src=\"images/fotolia110_F_142fotolia0898_bGmRjt3Zs13ir1gq0Woydw67lvaFYq.jpg\"
         | 
| 440 | 
            +
                    alt=\"Identity Theft\" width=\"67\" height=\"67\" border=\"0\" class=\"floatleft3\"
         | 
| 441 | 
            +
                    /></a></span>\r\n              <ul>\r\n                <li><a href=\"fraud/tips.aspx\">How
         | 
| 442 | 
            +
                    to protect yourself</a></li>\r\n                <li><a href=\"fraud/emails.aspx\">How
         | 
| 443 | 
            +
                    fraudsters operate</a></li>\r\n                <li><a href=\"fraud/examples.aspx\">Spot
         | 
| 444 | 
            +
                    suspicious activity</a></li>\r\n                <li><a href=\"fraud/fraud_vs_theft.aspx\">ID
         | 
| 445 | 
            +
                    Fraud vs. ID Theft</a></li>\r\n              </ul>\r\n            </div></td>\r\n
         | 
| 446 | 
            +
                    \         <td valign=\"top\" width=\"190\"><div id=\"forex_rates\">\r\n              <h2><span
         | 
| 447 | 
            +
                    class=\"blue\">FGB</span><span class=\"gold\">FOREX</span><span class=\"blue\">RATES</span></h2>\r\n
         | 
| 448 | 
            +
                    \              <!-- FX rates UC Here -->\r\n          <table width=\"190\"
         | 
| 449 | 
            +
                    bgcolor=\"#F1FBFE\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n
         | 
| 450 | 
            +
                    \          <tr>\r\n                  <th></th>\r\n                  <th>Buy
         | 
| 451 | 
            +
                    (Cash)</th>\r\n                  <th>Buy (Chq)</th>\r\n                  <th>Sell</th>\r\n
         | 
| 452 | 
            +
                    \               </tr>\r\n     \r\n                 <tr>\r\n                  <td
         | 
| 453 | 
            +
                    class=\"currency\">USD</td>\r\n                  <td align=\"center\" class=\"rates\">102.1</td>\r\n
         | 
| 454 | 
            +
                    \                 <td align=\"center\" class=\"rates\">103.50</td>\r\n                  <td
         | 
| 455 | 
            +
                    align=\"center\" class=\"rates\">105.70</td>\r\n                 </tr> \r\n
         | 
| 456 | 
            +
                    \       \r\n                  <tr>\r\n                  <td class=\"currency\">CAD</td>\r\n
         | 
| 457 | 
            +
                    \                 <td align=\"center\" class=\"rates\">97.00</td>\r\n                  <td
         | 
| 458 | 
            +
                    align=\"center\" class=\"rates\">98.00</td>\r\n                  <td align=\"center\"
         | 
| 459 | 
            +
                    class=\"rates\">100.60</td>\r\n                 </tr>  \r\n         \r\n                 <tr>\r\n
         | 
| 460 | 
            +
                    \                 <td class=\"currency\">GBP</td>\r\n                  <td
         | 
| 461 | 
            +
                    align=\"center\" class=\"rates\">163.00</td>\r\n                  <td align=\"center\"
         | 
| 462 | 
            +
                    class=\"rates\">166.50</td>\r\n                  <td align=\"center\" class=\"rates\">173.50</td>\r\n
         | 
| 463 | 
            +
                    \                </tr> \r\n        \r\n                  <tr>\r\n                  <td
         | 
| 464 | 
            +
                    class=\"currency\">EUR</td>\r\n                  <td align=\"center\" class=\"rates\">138.00</td>\r\n
         | 
| 465 | 
            +
                    \                 <td align=\"center\" class=\"rates\">140.00</td>\r\n                  <td
         | 
| 466 | 
            +
                    align=\"center\" class=\"rates\">143.50</td>\r\n                 </tr>  \r\n
         | 
| 467 | 
            +
                    \        \r\n          </table>\r\n          \r\n        \r\n <span class=\"ldate\"><span
         | 
| 468 | 
            +
                    id=\"Fxrates1_showDate\">December 05, 2013</span>\r\n - Subject to change</span>
         | 
| 469 | 
            +
                    \r\n\r\n\r\n              <div id=\"your\">\r\n                <h2><span class=\"blue\">YOUR</span><span
         | 
| 470 | 
            +
                    class=\"gold\">CONVENIENCE</span></h2>\r\n                <ul>\r\n                  <li><a
         | 
| 471 | 
            +
                    href=\"products/safety_deposit.aspx\">Safe deposit boxes</a></li>\r\n                  <li><a
         | 
| 472 | 
            +
                    href=\"secure/forms/VisaCreditCardApplicationForm.aspx\">Apply for a credit
         | 
| 473 | 
            +
                    card online</a></li>\r\n                  <li><a href=\"products/safe_keeping.aspx\">Safekeeping
         | 
| 474 | 
            +
                    for articles</a></li>\r\n                  <li><a href=\"products/night_depository.aspx\">Night
         | 
| 475 | 
            +
                    depository</a></li>\r\n                  <li><a href=\"online_banking/index.aspx\">Online
         | 
| 476 | 
            +
                    Banking (Global Access) </a></li>\r\n                </ul>\r\n                <h2><span
         | 
| 477 | 
            +
                    class=\"blue\">YOUR</span><span class=\"gold\">RETIREMENT</span></h2>\r\n
         | 
| 478 | 
            +
                    \               <ul>\r\n                  <li><a href=\"planning_learning/begin_planning_retirement.aspx\">Start
         | 
| 479 | 
            +
                    Planning Your Retirement</a></li>\r\n                  <li><a href=\"products/certificates_of_deposit.aspx\">Certificates
         | 
| 480 | 
            +
                    of Deposit</a></li>\r\n                  <li><a href=\"products/type_a_account.aspx\">FGB
         | 
| 481 | 
            +
                    Type 'A' Accounts</a></li>\r\n                  <li><a href=\"calculators/retirement_calculator.aspx\">Retirement
         | 
| 482 | 
            +
                    Calculator</a></li>\r\n                </ul>\r\n              </div>\r\n            </div></td>\r\n
         | 
| 483 | 
            +
                    \       </tr>\r\n      </table>\r\n    </div>\r\n    <div id=\"planning_training\"><a
         | 
| 484 | 
            +
                    href=\"planning_learning/introduction.aspx\"><img src=\"images/planning_training2.jpg\"
         | 
| 485 | 
            +
                    alt=\"Planning & Training\" width=\"448\" height=\"60\" border=\"0\" /></a></div>\r\n
         | 
| 486 | 
            +
                    \   <!-- end #sidebar2 -->\r\n  </div>\r\n  <div id=\"mainContent\">\r\n    <div
         | 
| 487 | 
            +
                    id=\"p7EPM_1\" class=\"p7EPM04\">\r\n      <div id=\"p7EPMt_1\" class=\"p7epm_trigs\">\r\n
         | 
| 488 | 
            +
                    \       <ul>\r\n          <li class=\"t1\"><a href=\"#p7EPMc1_1\" id=\"p7EPMtrg1_1\">1</a></li>\r\n
         | 
| 489 | 
            +
                    \         <li class=\"t2\"><a href=\"#p7EPMc1_2\" id=\"p7EPMtrg1_2\">2</a></li>\r\n
         | 
| 490 | 
            +
                    \         <li class=\"t3\"><a href=\"#p7EPMc1_3\" id=\"p7EPMtrg1_3\">3</a></li>\r\n
         | 
| 491 | 
            +
                    \         <li class=\"t4\"><a href=\"#p7EPMc1_4\" id=\"p7EPMtrg1_4\">4</a></li>\r\n
         | 
| 492 | 
            +
                    \         <li class=\"t5\"><a href=\"#p7EPMc1_5\" id=\"p7EPMtrg1_5\">5</a></li>\r\n
         | 
| 493 | 
            +
                    \         <li class=\"t6\"><a href=\"#p7EPMc1_6\" id=\"p7EPMtrg1_6\">6</a></li>\r\n
         | 
| 494 | 
            +
                    \         <li class=\"t7\"><a href=\"#p7EPMc1_7\" id=\"p7EPMtrg1_7\">7</a></li>\r\n
         | 
| 495 | 
            +
                    \       </ul>\r\n        <div class=\"p7epm_ie5clear\"> </div>\r\n      </div>\r\n
         | 
| 496 | 
            +
                    \     <div id=\"p7EPMdw_1\">\r\n      \t<div id=\"p7EPMw1_1\" class=\"p7epm_cwrapper\">\r\n
         | 
| 497 | 
            +
                    \         <div id=\"p7EPMc1_1\" class=\"p7epm_content pan1\"> <a href=\"customer_service/diaspora.aspx\"><img
         | 
| 498 | 
            +
                    src=\"/images/home_promo_01_diaspora.jpg\" alt=\"Education Loan\" width=\"343\"
         | 
| 499 | 
            +
                    height=\"199\" border=\"0\" /></a>  </div>\r\n        </div>\r\n        \r\n
         | 
| 500 | 
            +
                    \       <div id=\"p7EPMw1_2\" class=\"p7epm_cwrapper\">\r\n          <div
         | 
| 501 | 
            +
                    id=\"p7EPMc1_2\" class=\"p7epm_content pan2\"><a href=\"http://rewards.firstglobal-bank.com\"><img
         | 
| 502 | 
            +
                    src=\"/images/home_promo_01_rewards.jpg\" alt=\"FGBC Card Rewards\" width=\"343\"
         | 
| 503 | 
            +
                    height=\"199\" border=\"0\" /></a>  </div>\r\n        </div>\r\n        <div
         | 
| 504 | 
            +
                    id=\"p7EPMw1_3\" class=\"p7epm_cwrapper\">\r\n          <div id=\"p7EPMc1_3\"
         | 
| 505 | 
            +
                    class=\"p7epm_content pan3\"> <a href=\"/news/newsarticle.aspx?id=98&cat=1\"><img
         | 
| 506 | 
            +
                    src=\"images/home_promo_01_awards.jpg\" alt=\"Why Choose FGB?\" width=\"343\"
         | 
| 507 | 
            +
                    height=\"199\" border=\"0\" /></a> </div>\r\n        </div>\r\n        <div
         | 
| 508 | 
            +
                    id=\"p7EPMw1_4\" class=\"p7epm_cwrapper\">\r\n          <div id=\"p7EPMc1_4\"
         | 
| 509 | 
            +
                    class=\"p7epm_content pan4\"> <a href=\"/products/go_green_energy_saver_loan.aspx\"><img
         | 
| 510 | 
            +
                    src=\"images/home_promo_01_gogreen.jpg\" alt=\"Go Green Energy Saver Loan\"
         | 
| 511 | 
            +
                    width=\"343\" height=\"199\" border=\"0\" /></a>  </div>\r\n        </div>\r\n
         | 
| 512 | 
            +
                    \       <div id=\"p7EPMw1_5\" class=\"p7epm_cwrapper\">\r\n          <div
         | 
| 513 | 
            +
                    id=\"p7EPMc1_5\" class=\"p7epm_content pan5\">  <a href=\"products/global_kids_teens.aspx\"><img
         | 
| 514 | 
            +
                    src=\"images/home_promo_01_gkt.jpg\" alt=\"Global Kids & Global Teens Savings
         | 
| 515 | 
            +
                    Accounts\" width=\"343\" height=\"199\" border=\"0\" /></a>  </div>\r\n        </div>\r\n
         | 
| 516 | 
            +
                    \       <div id=\"p7EPMw1_6\" class=\"p7epm_cwrapper\">\r\n          <div
         | 
| 517 | 
            +
                    id=\"p7EPMc1_6\" class=\"p7epm_content pan6\"><a href=\"#\"><img src=\"/images/home_promo_01_creditor.jpg\"
         | 
| 518 | 
            +
                    alt=\"Creditor Life - Ask about it\" width=\"343\" height=\"199\" border=\"0\"
         | 
| 519 | 
            +
                    /></a></div>\r\n        </div>\r\n        <div id=\"p7EPMw1_7\" class=\"p7epm_cwrapper\">\r\n
         | 
| 520 | 
            +
                    \         <div id=\"p7EPMc1_7\" class=\"p7epm_content pan7\"> \r\n          <a
         | 
| 521 | 
            +
                    href=\"products/car_loan.aspx\"><img src=\"images/home_promo_01_vehicle.jpg\"
         | 
| 522 | 
            +
                    alt=\"Motor Vehicle Loan\" width=\"343\" height=\"199\" border=\"0\" /></a>\r\n
         | 
| 523 | 
            +
                    \         \r\n          </div>\r\n        </div>\r\n      </div>\r\n      <!--[if
         | 
| 524 | 
            +
                    IE 5]><style>.p7epm_trigs {width: 100%;} .p7epm_ie5clear {clear: both;} .p7epm_content,
         | 
| 525 | 
            +
                    .p7epm_content li a {height: 1%;}</style><![endif]-->\r\n      <!--[if IE
         | 
| 526 | 
            +
                    6]><style>.p7epm_trigs, .p7epm_content div {zoom: 1;} .p7epm_trigs a {height:
         | 
| 527 | 
            +
                    auto !important;}</style><![endif]-->\r\n      <script type=\"text/javascript\">\r\n<!--\r\nP7_opEPM('p7EPM_1',1,1,1,0,1,10000,0,0,250,0,0,1);\r\n//-->\r\n
         | 
| 528 | 
            +
                    \     </script>\r\n    </div>\r\n    <div id=\"promo2_home\">\r\n      <h2>Online
         | 
| 529 | 
            +
                    Banking...</h2>\r\n      <div id=\"top_2_ob\"><span class=\"login_red\"><img
         | 
| 530 | 
            +
                    src=\"images/icon_login_lock.gif\" width=\"9\" height=\"12\" alt=\"FGB Online
         | 
| 531 | 
            +
                    Banking Login\" /> <a href=\"online_banking/login.aspx\">Login</a></span>|
         | 
| 532 | 
            +
                    <a href=\"javascript: void(0);\"   onclick=\"window.open('/online_bank_demo/_swf/mainmenu.swf',
         | 
| 533 | 
            +
                    'FGB_Online_Banking_Demo','width=1007,height=500'); return false;\">View Demo</a>
         | 
| 534 | 
            +
                    | <a href=\"online_banking/index.aspx\">Learn More</a> </div>\r\n      <p>Available
         | 
| 535 | 
            +
                    at night, on weekends and always ready to serve you. With Global Access you're
         | 
| 536 | 
            +
                    in charge. No need to visit or call a branch.</p>\r\n    </div>\r\n    <div
         | 
| 537 | 
            +
                    id=\"promo3\">\r\n      <table width=\"343\" border=\"0\" cellspacing=\"0\"
         | 
| 538 | 
            +
                    cellpadding=\"0\">\r\n        <tr>\r\n          <td width=\"170\" valign=\"top\"><div
         | 
| 539 | 
            +
                    id=\"your2\">\r\n              <ul>\r\n                <li class=\"leftpad\">Online
         | 
| 540 | 
            +
                    utility bill payment</li>\r\n                <li class=\"leftpad\">Customer
         | 
| 541 | 
            +
                    support</li>\r\n                <li class=\"leftpad\">Online statements</li>\r\n
         | 
| 542 | 
            +
                    \             </ul>\r\n              <br />\r\n            </div></td>\r\n
         | 
| 543 | 
            +
                    \         <td valign=\"top\"><div id=\"your2\">\r\n              <ul>\r\n
         | 
| 544 | 
            +
                    \               <li>Account transfer services</li>\r\n                <li>Pay
         | 
| 545 | 
            +
                    FGB credit card bills</li>\r\n                <li>Update account information</li>\r\n
         | 
| 546 | 
            +
                    \             </ul>\r\n            </div></td>\r\n        </tr>\r\n      </table>\r\n
         | 
| 547 | 
            +
                    \   </div>\r\n    <div id=\"promo4_home\">\r\n      <h2>Noteworthy...</h2>\r\n
         | 
| 548 | 
            +
                    \     <p>First Global Bank is pleased to announce the launch of its <br />\r\n
         | 
| 549 | 
            +
                    \       new online banking service Global Access. It has convenient features
         | 
| 550 | 
            +
                    not currently offered by any other online banking service in Jamaica. <a href=\"javascript:
         | 
| 551 | 
            +
                    void(0)\"   onclick=\"window.open('/online_bank_demo/_swf/mainmenu.swf', 'FGB_Online_Banking_Demo','width=1007,height=500');
         | 
| 552 | 
            +
                    return false;\">Click here</a> to view our Global Access demo.\r\n        <br
         | 
| 553 | 
            +
                    />\r\n        <span><a href=\"online_banking/login.aspx\">login</a> . <a href=\"online_banking/banking_agreement.aspx\">agreement</a>
         | 
| 554 | 
            +
                    . <a href=\"online_banking/faq_enrollment.aspx\">enrollment</a> . <a href=\"online_banking/faq_online_billpay.aspx\">bill
         | 
| 555 | 
            +
                    payment</a></span>    </div>\r\n    </p>\r\n   \r\n    <br /><br /><br />\r\n
         | 
| 556 | 
            +
                    \   <!-- end #mainContent -->\r\n  </div>\r\n  <!-- This clearing element
         | 
| 557 | 
            +
                    should immediately follow the #mainContent div in order to force the #container
         | 
| 558 | 
            +
                    div to contain all child floats -->\r\n  <br class=\"clearfloat\" />\r\n  <div
         | 
| 559 | 
            +
                    id=\"footer\">\r\n    <p><a href=\"/footer/terms_conditions.aspx\">Terms & Conditions</a>.<a
         | 
| 560 | 
            +
                    href=\"/footer/privacy.aspx\">Privacy</a>.<a href=\"/footer/security.aspx\">Security</a>.<a
         | 
| 561 | 
            +
                    href=\"/customer_service/general_faqs.aspx\">Help</a>.<a href=\"/about_fgb/careers.aspx\">Careers</a>.<a
         | 
| 562 | 
            +
                    href=\"/branches/corporate.aspx\">Contact Us</a></p>\r\n  <p>©2011 First
         | 
| 563 | 
            +
                    Global Bank Limited | <a href=\"http://www.jamstockex.com/\" target=\"_blank\">Jamaica Stock Exchange</a>
         | 
| 564 | 
            +
                    | <a href=\"http://www.jdic.org/\" target=\"_blank\">Jamaica Deposit Insurance Corporation</a>
         | 
| 565 | 
            +
                    | <a href=\"http://www.boj.org.jm/\" target=\"_blank\">Bank of Jamaica</a>
         | 
| 566 | 
            +
                    |  <a href=\"http://www.mof.gov.jm/\" target=\"_blank\">GOJ Links –
         | 
| 567 | 
            +
                    Ministry of Finance</a> |</p>\r\n    <!-- end #footer -->\r\n  </div>\r\n
         | 
| 568 | 
            +
                    \ <script type=\"text/javascript\">\r\nvar gaJsHost = ((\"https:\" == document.location.protocol)
         | 
| 569 | 
            +
                    ? \"https://ssl.\" : \"http://www.\");\r\ndocument.write(unescape(\"%3Cscript
         | 
| 570 | 
            +
                    src='\" + gaJsHost + \"google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E\"));\r\n</script>\r\n<script
         | 
| 571 | 
            +
                    type=\"text/javascript\">\r\ntry {\r\nvar pageTracker = _gat._getTracker(\"UA-15825207-1\");\r\npageTracker._trackPageview();\r\n}
         | 
| 572 | 
            +
                    catch(err) {}</script>\r\n  <!-- end #container -->\r\n</div>\r\n</body>\r\n</html>\r\n"
         | 
| 573 | 
            +
                http_version: 
         | 
| 574 | 
            +
              recorded_at: Thu, 05 Dec 2013 17:00:04 GMT
         | 
| 575 | 
            +
            recorded_with: VCR 2.8.0
         |