

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="https://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
    <script type="text/javascript" src="/localinc/CookieService.js"></script>
    <script src="/localinc/popup.js?v=0.1.1"></script>
    <script type="text/javascript" src="/scripts/getstarted.js?v=3.19.3"></script>
    <script src="https://www.google.com/recaptcha/api.js"></script>
    <!-- Google Tag Manager -->
    <script type="text/javascript">
        const analyticsCookieValue = CookieService.getCookie('analytics');
        console.log(analyticsCookieValue == 'accepted');
        if (analyticsCookieValue == 'accepted') {
            (function (w, d, s, l, i) {
                w[l] = w[l] || []; w[l].push({
                    'gtm.start':
                        new Date().getTime(), event: 'gtm.js'
                }); var f = d.getElementsByTagName(s)[0],
                    j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src =
                        'https://www.googletagmanager.com/gtm.js?id=' + i + dl; f.parentNode.insertBefore(j, f);
            })(window, document, 'script', 'dataLayer', 'GTM-NQW26FJ');
        }
    </script>
    <!-- End Google Tag Manager -->
    <meta https-equiv="X-UA-Compatible" content="IE=edge" /><title>
	Blog | Tom James Company
</title><link href="https://fonts.googleapis.com/css?family=Lora:400,400italic,700,700italic|Raleway:400,300,700|Poiret+One" rel="stylesheet" type="text/css" /><link href="https://fonts.googleapis.com/css?family=Roboto+Condensed&amp;display=swap" rel="stylesheet" /><link rel="icon" type="image/vnd.microsoft.icon" href="/localpics/tom-james-company-favicon.ico" /><link rel="icon" type="image/png" href="/localpics/tom-james-company-favicon.png" /><link rel="apple-touch-icon" href="/localpics/tom-james-company-favicon.png" /><link rel="shortcut icon" href="/localpics/tom-james-company-favicon.ico" /><meta name="viewport" content="width=device-width, initial-scale = 1.0, maximum-scale=1.0, user-scalable=no" /><link href="/localinc/tomjames.css?version=7.6" rel="stylesheet" type="text/css" /><link rel="stylesheet" type="text/css" href="/localinc/cookie-consent.css?v1" /><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" /><link rel="stylesheet" type="text/css" href="/localinc/jquery.fancybox.css" />
    <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
    <script type="text/javascript" src="/localinc/CoverPop.js"></script>
    <script type="text/javascript" src="/Scripts/jquery.anyslider.js"></script>
    <script type="text/javascript" src="/scripts/modernizr.custom.js"></script>
    <script type="text/javascript" src="/scripts/jquery.sticky.js"></script>
    <script src="//cdn.bc0a.com/autopilot/f00000000277693/autopilot_sdk.js"></script>
    <script type="text/javascript">

        CheckRegion();

        function getCookie(cname) {
            var name = cname + "=";
            var ca = document.cookie.split(';');
            for (var i = 0; i < ca.length; i++) {
                var c = ca[i];
                while (c.charAt(0) == ' ') c = c.substring(1);
                if (c.indexOf(name) == 0) return c.substring(name.length, c.length);
            }
            return "";
        }

        function getParamValuesByName(querystring) {
            var returnVal = '';
            var qstring = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
            for (var i = 0; i < qstring.length; i++) {
                var urlparam = qstring[i].split('=');
                if (returnVal == '') {
                    if (urlparam[0].toUpperCase() == querystring.toUpperCase()) {
                        returnVal = urlparam[1];
                    }

                }

            }
            return returnVal;
        }


        function CheckRegion() {
            var region = getCookie("tjregion");

            // A querystring region trumps all
            var qsRegion = getParamValuesByName("region");
            if (qsRegion != "") {
                if (region != qsRegion) {
                    SetRegion(qsRegion, true);
                }
            }
            else {
                // Check for no region and ask for one if necessary
                if (!region) {
                    CoverPop.start();
                }
            }
        }

        function SetRegion(pRegion, pReload) {
            var exdate = new Date();
            exdate.setDate(exdate.getDate() + 365);
            document.cookie = "tjregion=" + pRegion + "; expires=" + exdate + "; path=/";

            // Delete the price factor and exchange rate cookies by setting their expiration dates in the past.
            // The code behind will reset them when the page reloads
            document.cookie = "prcfct=1; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/";
            document.cookie = "excrat=1; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/";

            if (pReload) {
                location.reload();
            }

        }

    </script>
    <script type="text/javascript">
        //$(document).ready(function () {
        //    // Target your .container, .wrapper, .post, etc.
        //    $(".container").fitVids();
        //});
        $(function () {
            $('a[href*="#"]:not([href="#"])').click(function () {
                if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') && location.hostname == this.hostname) {
                    var target = $(this.hash);
                    target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
                    if (target.length) {
                        $('html,body').animate({
                            scrollTop: target.offset().top - 20
                        }, 1000);
                        return false;
                    }
                }
            });
        });
        // The function actually applying the offset
        function offsetAnchor() {
            if (location.hash.length !== 0) {
                window.scrollTo(window.scrollX, window.scrollY - 100);
            }
        }

        // This will capture hash changes while on the page
        $(window).on("hashchange", function () {
            offsetAnchor();
        });

        // This is here so that when you enter the page with a hash,
        // it can provide the offset in that case too. Having a timeout
        // seems necessary to allow the browser to jump to the anchor first.
        window.setTimeout(function () {
            offsetAnchor();
        }, 1); // The delay of 1 is arbitrary and may not always work right (although it did in my testing).
    </script>


    <meta name="p:domain_verify" content="50552b05f9fbf25a4b9c5da1a853aaf2" />
    <script type="application/ld+json">
    {
      "@context": "https://schema.org",
      "@graph": [
        {
          "@type": "Organization",
          "@id": "https://www.tomjames.com/#organization",
          "name": "Tom James Company",
          "url": "https://www.tomjames.com",
          "logo": {
            "@type": "ImageObject",
            "url": "https://www.tomjames.com/localpics/TJ_Logo_Horiz.svg"
          },
          "sameAs": [
            "https://www.facebook.com/tomjamescompany",
            "https://www.instagram.com/tomjamescompany",
            "https://www.linkedin.com/company/tom-james-company"
          ]
        },
        {
          "@type": "WebSite",
          "@id": "https://www.tomjames.com/#website",
          "url": "https://www.tomjames.com",
          "publisher": {
            "@id": "https://www.tomjames.com/#organization"
          }
        }
      ]
    }
    </script>

    
   <meta name="description" content="TomTalks Blog is your resource for how to dress professionally, care for your custom suits, and accessorize your wardrobe with the professional servicse of a personal clothier." />
   <meta property="og:image" content="https://www.tomjames.com/localpics/TomTalks-Tom-James-Blog.jpg" />
   <meta property="twitter:image" content="https://www.tomjames.com/localpics/TomTalks-Tom-James-Blog.jpg" />
   
    <style type="text/css">
        .hero{background-image:url("/localpics/background-how.jpg");}

            .div_blog_image{
                display:inline-block;
                text-align:left;
                width:350px;
                height:250px;
                overflow:hidden;
            }
            .div_blog_image img {
            object-fit:cover !important;
            object-position:left top;
            width:100%;
            height:100%;

                }
            .div_blog_content {
                display:inline-block;
                width:75%;
            }
            .div_posts {
            width:350px;
            display:inline-block;
            vertical-align:top;
            margin:auto;
            text-align:left;
            padding-bottom:15px;
            margin: 15px;
            }
            .div_posts h2 {
                font-size:20px;
            }
            .inner_div_post {
                border-bottom: 1px solid black;
                padding: 15px;
            }
            .sub_ttl {
                font-weight:lighter;
                font-style:italic;
                margin-top:-15px;
            }
            .auth_div {
                font-size: .75em;
                text-align:left;
            }
             .blogAuthor {
                height:29px;
                display:block;
            }
            .content-div{            
                font-size: 14px !important;
}
    </style>
    <script type="text/javascript">
        function removeImg() {
            $(this).hide()
        }
    </script>
</head>
<body>
    <!-- Google Tag Manager (noscript) -->
    <noscript>
        <iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NQW26FJ"
            height="0" width="0" style="display: none; visibility: hidden"></iframe>
    </noscript>
    <!-- End Google Tag Manager (noscript) -->
    <form method="post" action="./default.aspx?feed=rss2" id="ctl01">
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUJNzYxNTc5NzYwD2QWAmYPZBYCAgMPZBYCAgMPZBYGZg8WAh4LXyFJdGVtQ291bnQCChYUZg9kFgJmDxUIBDEwODk9ZWxldmF0ZWQtY29sbGVnZS1hcHBhcmVsLWZvci1hbHVtbmktZ2FtZS1kYXlzLXNwZWNpYWwtZXZlbnRzLzRodHRwczovL3d3dy50b21qYW1lcy5jb20vcGljcy9ibG9nL1RKTTY2NzEzXzExNzguanBnQEVsZXZhdGVkIENvbGxlZ2UgQXBwYXJlbCBmb3IgQWx1bW5pLCBHYW1lIERheXMsICYgU3BlY2lhbCBFdmVudHMAsAE8YSBocmVmPScvYmxvZy9lbGV2YXRlZC1jb2xsZWdlLWFwcGFyZWwtZm9yLWFsdW1uaS1nYW1lLWRheXMtc3BlY2lhbC1ldmVudHMvJyBzdHlsZT0ndGV4dC1kZWNvcmF0aW9uOm5vbmU7Jz5FbGV2YXRlZCBDb2xsZWdlIEFwcGFyZWwgZm9yIEFsdW1uaSwgR2FtZSBEYXlzLCAmIFNwZWNpYWwgRXZlbnRzPC9hPiFLaW0gS2VsbGVyLCBDbG90aGllciAtIERhbGxhcywgVFgMTWF5IDExLCAyMDI2ZAIBD2QWAmYPFQgEMTA3NCdob3ctdG8tYnVpbGQtdGhlLW1lbnMtY2Fwc3VsZS13YXJkcm9iZS80aHR0cHM6Ly93d3cudG9tamFtZXMuY29tL3BpY3MvYmxvZy9USk02NjcxM18xMTU3LmpwZydIb3cgVG8gQnVpbGQgVGhlIE1lbidzIENhcHN1bGUgV2FyZHJvYmUAgQE8YSBocmVmPScvYmxvZy9ob3ctdG8tYnVpbGQtdGhlLW1lbnMtY2Fwc3VsZS13YXJkcm9iZS8nIHN0eWxlPSd0ZXh0LWRlY29yYXRpb246bm9uZTsnPkhvdyBUbyBCdWlsZCBUaGUgTWVuJ3MgQ2Fwc3VsZSBXYXJkcm9iZTwvYT4hS2ltIEtlbGxlciwgQ2xvdGhpZXIgLSBEYWxsYXMsIFRYDkFwcmlsIDEzLCAyMDI2ZAICD2QWAmYPFQgEMTA2MRtkcmVzc2luZy1mb3Itc3ByaW5nLWV2ZW50cy80aHR0cHM6Ly93d3cudG9tamFtZXMuY29tL3BpY3MvYmxvZy9USk02NjcxM18xMTUyLmpwZxpEcmVzc2luZyBmb3IgU3ByaW5nIEV2ZW50cwBoPGEgaHJlZj0nL2Jsb2cvZHJlc3NpbmctZm9yLXNwcmluZy1ldmVudHMvJyBzdHlsZT0ndGV4dC1kZWNvcmF0aW9uOm5vbmU7Jz5EcmVzc2luZyBmb3IgU3ByaW5nIEV2ZW50czwvYT4PR3JhY2UgTGFua2ZvcmQgDU1hcmNoIDMsIDIwMjZkAgMPZBYCZg8VCAQxMDU5MWNyZWF0aW5nLWEtY2Fwc3VsZS13YXJkcm9iZS10aGF0LXdvcmtzLWZvci13b21lbi80aHR0cHM6Ly93d3cudG9tamFtZXMuY29tL3BpY3MvYmxvZy9USk02NjcxM18xMTQ2LmpwZzBDcmVhdGluZyBBIENhcHN1bGUgV2FyZHJvYmUgVGhhdCBXb3JrcyBGb3IgV29tZW4AlAE8YSBocmVmPScvYmxvZy9jcmVhdGluZy1hLWNhcHN1bGUtd2FyZHJvYmUtdGhhdC13b3Jrcy1mb3Itd29tZW4vJyBzdHlsZT0ndGV4dC1kZWNvcmF0aW9uOm5vbmU7Jz5DcmVhdGluZyBBIENhcHN1bGUgV2FyZHJvYmUgVGhhdCBXb3JrcyBGb3IgV29tZW48L2E+D0dyYWNlIExhbmtmb3JkIBFGZWJydWFyeSAxOCwgMjAyNmQCBA9kFgJmDxUIBDEwNTgeMjAyNi1jb2xvci10cmVuZHMtaW4tY2xvdGhpbmcvNGh0dHBzOi8vd3d3LnRvbWphbWVzLmNvbS9waWNzL2Jsb2cvVEpNNjY3MTNfMTE0NC5qcGcdMjAyNiBDb2xvciBUcmVuZHMgSW4gQ2xvdGhpbmcAbjxhIGhyZWY9Jy9ibG9nLzIwMjYtY29sb3ItdHJlbmRzLWluLWNsb3RoaW5nLycgc3R5bGU9J3RleHQtZGVjb3JhdGlvbjpub25lOyc+MjAyNiBDb2xvciBUcmVuZHMgSW4gQ2xvdGhpbmc8L2E+IUtpbSBLZWxsZXIsIENsb3RoaWVyIC0gRGFsbGFzLCBUWBFGZWJydWFyeSAxMCwgMjAyNmQCBQ9kFgJmDxUIBDEwNTcyaG93LXRvLXdlYXItYS12ZXN0Oi1hLWNvbXByZWhlbnNpdmUtZ3VpZGUtZm9yLW1lbi80aHR0cHM6Ly93d3cudG9tamFtZXMuY29tL3BpY3MvYmxvZy9USk02NjcxM18xMTQyLmpwZzFIb3cgdG8gV2VhciBhIFZlc3Q6IEEgQ29tcHJlaGVuc2l2ZSBHdWlkZSBmb3IgTWVuAJYBPGEgaHJlZj0nL2Jsb2cvaG93LXRvLXdlYXItYS12ZXN0Oi1hLWNvbXByZWhlbnNpdmUtZ3VpZGUtZm9yLW1lbi8nIHN0eWxlPSd0ZXh0LWRlY29yYXRpb246bm9uZTsnPkhvdyB0byBXZWFyIGEgVmVzdDogQSBDb21wcmVoZW5zaXZlIEd1aWRlIGZvciBNZW48L2E+IUtpbSBLZWxsZXIsIENsb3RoaWVyIC0gRGFsbGFzLCBUWBBGZWJydWFyeSAzLCAyMDI2ZAIGD2QWAmYPFQgEMTA1NCxob3ctdG8tZWxldmF0ZS15b3VyLWJ1c2luZXNzLWF0dGlyZS1pbi0yMDI2LzRodHRwczovL3d3dy50b21qYW1lcy5jb20vcGljcy9ibG9nL1RKTTY2NzEzXzExNDAuanBnK0hvdyBUbyBFbGV2YXRlIFlvdXIgQnVzaW5lc3MgQXR0aXJlIEluIDIwMjYAigE8YSBocmVmPScvYmxvZy9ob3ctdG8tZWxldmF0ZS15b3VyLWJ1c2luZXNzLWF0dGlyZS1pbi0yMDI2Lycgc3R5bGU9J3RleHQtZGVjb3JhdGlvbjpub25lOyc+SG93IFRvIEVsZXZhdGUgWW91ciBCdXNpbmVzcyBBdHRpcmUgSW4gMjAyNjwvYT4hS2ltIEtlbGxlciwgQ2xvdGhpZXIgLSBEYWxsYXMsIFRYEEphbnVhcnkgMjEsIDIwMjZkAgcPZBYCZg8VCAQxMDE0QXRoZS03LWVzc2VudGlhbC13YXJkcm9iZS1waWVjZXMtZXZlcnktcHJvZmVzc2lvbmFsLW5lZWRzLWluLTIwMjYvNGh0dHBzOi8vd3d3LnRvbWphbWVzLmNvbS9waWNzL2Jsb2cvVEpNNjY3MTNfMTEzNC5qcGdAVGhlIDcgRXNzZW50aWFsIFdhcmRyb2JlIFBpZWNlcyBFdmVyeSBQcm9mZXNzaW9uYWwgTmVlZHMgaW4gMjAyNgC0ATxhIGhyZWY9Jy9ibG9nL3RoZS03LWVzc2VudGlhbC13YXJkcm9iZS1waWVjZXMtZXZlcnktcHJvZmVzc2lvbmFsLW5lZWRzLWluLTIwMjYvJyBzdHlsZT0ndGV4dC1kZWNvcmF0aW9uOm5vbmU7Jz5UaGUgNyBFc3NlbnRpYWwgV2FyZHJvYmUgUGllY2VzIEV2ZXJ5IFByb2Zlc3Npb25hbCBOZWVkcyBpbiAyMDI2PC9hPiFLaW0gS2VsbGVyLCBDbG90aGllciAtIERhbGxhcywgVFgRRGVjZW1iZXIgMTAsIDIwMjVkAggPZBYCZg8VCAM5OTUubWFzdGVyLWF1dHVtbi1idXNpbmVzcy1hdHRpcmUtd2l0aC10aGVzZS10aXBzLzRodHRwczovL3d3dy50b21qYW1lcy5jb20vcGljcy9ibG9nL1RKTTY2NzEzXzExMzIuanBnLU1hc3RlciBBdXR1bW4gQnVzaW5lc3MgQXR0aXJlIHdpdGggVGhlc2UgVGlwcwCOATxhIGhyZWY9Jy9ibG9nL21hc3Rlci1hdXR1bW4tYnVzaW5lc3MtYXR0aXJlLXdpdGgtdGhlc2UtdGlwcy8nIHN0eWxlPSd0ZXh0LWRlY29yYXRpb246bm9uZTsnPk1hc3RlciBBdXR1bW4gQnVzaW5lc3MgQXR0aXJlIHdpdGggVGhlc2UgVGlwczwvYT4hS2ltIEtlbGxlciwgQ2xvdGhpZXIgLSBEYWxsYXMsIFRYEE5vdmVtYmVyIDQsIDIwMjVkAgkPZBYCZg8VCAM5NDYnc3RhbmQtb3V0LWluLXN0eWxlLXdpdGgtYS13ZXN0ZXJuLXN1aXQvNGh0dHBzOi8vd3d3LnRvbWphbWVzLmNvbS9waWNzL2Jsb2cvVEpNNjY3MTNfMTEzMS5qcGcmU3RhbmQgT3V0IEluIFN0eWxlIFdpdGggQSBXZXN0ZXJuIFN1aXQAgAE8YSBocmVmPScvYmxvZy9zdGFuZC1vdXQtaW4tc3R5bGUtd2l0aC1hLXdlc3Rlcm4tc3VpdC8nIHN0eWxlPSd0ZXh0LWRlY29yYXRpb246bm9uZTsnPlN0YW5kIE91dCBJbiBTdHlsZSBXaXRoIEEgV2VzdGVybiBTdWl0PC9hPiFLaW0gS2VsbGVyLCBDbG90aGllciAtIERhbGxhcywgVFgSU2VwdGVtYmVyIDE4LCAyMDI1ZAIBDw8WAh4HVmlzaWJsZWhkZAICDw8WAh4LTmF2aWdhdGVVcmwFE0RlZmF1bHQuYXNweD9wYWdlPTJkZGSf2/77IxB7VLBIAeS8t0Z9mnFGRtnjigViRUPMfVJeJw==" />

<input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="651BE23F" />

        <style type="text/css">
            html, body {
                overflow-x: hidden;
            }
        </style>
        

        <div class="nav-container">
            <div class="topnav">
                <span itemscope itemtype="https://schema.org/ImageObject">
                    <a href="/">
                        <img itemprop="contentUrl" class="moblogo" src="/localpics/TJ_Logo_Horiz.svg" alt="Tom James Company makers of Custom Suits and Custom Dress Shirts" /></a>
                </span>
                <!-- Navigation links (hidden by default) -->
                <div id="myLinks">
                    <div class="Mobnavlinks">
                        <a href="/mens-custom-clothing/">Men</a>
                        <a href="/womens-custom-clothing/">Women</a>
                        <a href="/shop/giftcards/">Gift Cards</a>
                        <a href="/how-it-works/">How It Works</a>
                        <a href="/locations/">Locations</a>

                        <a href="/shop/">Ready-to-Wear</a>
                        <a href="/accessibilty.aspx" style="width: 1px; height: 1px; padding: 0px; overflow: hidden;">Accessibilty</a>
                        
                        <a class="lightgreyback" href="/contact/Get-started.aspx">Get Started</a>
                        <hr />
                        
                        
                    </div>
                </div>
                <!-- "Hamburger menu" / "Bar icon" to toggle the navigation links -->
                <a href="javascript:void(0);" class="icon" onclick="myMobileFunction()" aria-label="open navigation links">
                    <i class="fa fa-bars" alt="menu icon"></i>
                </a>
            </div>
        </div>
        <div class="container">
            <div class="ipadheader">
                <div style="float: left; margin-top: -4px;">
                    <a href="javascript:history.go(-1)">
                        <img src="/localpics/left_large.png" alt="navigate back" /></a>
                </div>

                <div style="float: right; margin-right: 25px;">
                    <a href="javascript:location.reload()">
                        <img src="/localpics/refresh.png" alt="refresh this page" /></a>
                </div>
                <div class="clear"></div>
            </div>
            <div id="divHeader" class="header">
                <div id="divNavigation" class="nav">
                    <div style="position: relative; top: 0px; left: 0px; z-index: 2; margin: auto; text-align: center;">
                        <div class="navleft">
                            <a href="/">
                                <img itemprop="contentUrl" class="logo" src="/localpics/TJ_Logo_Horiz.svg" alt="Tom James Company makers of Custom Suits and Custom Dress Shirts" /></a>
                            <div class="navlink">Men
                                <div class="navlink-drop">
                                    <a href="/mens-custom-clothing/mens-look-book/"><strong>New Arrivals</strong></a>
                                    <a href="/mens-custom-clothing/"><strong>Men's Custom Clothing</strong></a>
                                    <blockquote>
                                        <a href="/mens-custom-clothing/custom-suits/">Suits</a>
                                        <a href="/mens-custom-clothing/custom-blazers-and-sport-coats/">Sport Coats & Blazers</a>
                                        <a href="/mens-custom-clothing/custom-dress-shirts/">Dress Shirts</a>
                                        <a href="/mens-custom-clothing/custom-casual-shirts/">Casual Shirts</a>
                                        <a href="/mens-custom-clothing/custom-tuxedos/">Tuxedos &amp; Formalwear </a>
                                        <a href="/mens-custom-clothing/custom-outerwear/">Outerwear</a>
                                    </blockquote>
                                    <a href="/shop/">Ready-to-Wear & Accessories</a>
                                </div>

                            </div>
                            <div class="navlink">Women
                                <div class="navlink-drop">
                                    <a href="/womens-custom-clothing/womens-look-book/"><strong>New Arrivals</strong></a>
                                    <a href="/womens-custom-clothing/"><strong>Women's Custom Clothing</strong></a>
                                    <blockquote>
                                        <a href="/womens-custom-clothing/custom-suits/">Suits</a>
                                        <a href="/womens-custom-clothing/custom-blazers-and-sport-coats/">Jackets</a>
                                        <a href="/womens-custom-clothing/custom-trousers/">Trousers</a>
                                        <a href="/womens-custom-clothing/custom-skirts/">Skirts</a>
                                        <a href="/womens-custom-clothing/custom-dresses/">Dresses</a>
                                        <a href="/womens-custom-clothing/custom-outerwear/">Outerwear</a>
                                    </blockquote>
                                </div>

                            </div>
                            <a class="navlink" href="/shop/giftcards/">Gift Cards</a>
                            <a class="navlink" href="/how-it-works/">How It Works</a>
                            <a class="navlink" href="/locations/">Locations</a>
                        </div>
                    </div>
                    <div style="position: relative; top: 0px; right: 0px; z-index: 2; margin: auto; text-align: center;">
                        <div class="navright">
                            <a class="navlink" href="/accessibilty.aspx" style="width: 1px; height: 1px; padding: 0px; overflow: hidden;">Accessibilty</a>
                            <a id="GSBUtton" class="navlink lightgreyback" href="/contact/Get-started.aspx">Get Started</a>
                            
                        </div>
                    </div>

                </div>
                <div class="clear"></div>
            </div>
        <script type="text/javascript" src="/scripts/gallery.js?v=2.92"></script>
            <div class="PageBody">
                
                <div id="subnavigation" class="subnavigation">
                    <a href="/TRUNKSHOWS/">
                        Take advantage of the best values of the season at a Trunk Show in your area.
                    </a>
                </div>
                <div id="hero" class="hero">
                    
                    <div class="heroCopy">
                        
            <h1>TomTalks</h1>
            <hr />
            <h3>Tom James Blog</h3>

                    </div>
                </div>
                <div class="clear"></div>
                <div class="content">
                    
    <div class="center-section">
        
                <div class="div_posts" id="1089">
                   <div class="div_blog_image">
                        <a href='/blog/elevated-college-apparel-for-alumni-game-days-special-events/'><img src=" https://www.tomjames.com/pics/blog/TJM66713_1178.jpg" alt="Elevated College Apparel for Alumni, Game Days, & Special Events" onerror="removeImg()"  /></a>
                   </div>
                   <div class="div_blog_content" style="float:left; text-align:left;" >
                        <h2 id="blog_container" class="sectionheader alignleft" style="text-transform:capitalize;">
                            
                            <a href='/blog/elevated-college-apparel-for-alumni-game-days-special-events/' style='text-decoration:none;'>Elevated College Apparel for Alumni, Game Days, & Special Events</a>
                        </h2>
                        <div class="auth_div margintop15">
                            <span class="blogAuthor">By: Kim Keller, Clothier - Dallas, TX<br /> May 11, 2026</span>
                        </div>                    
                    </div>
                </div>
            
                <div class="div_posts" id="1074">
                   <div class="div_blog_image">
                        <a href='/blog/how-to-build-the-mens-capsule-wardrobe/'><img src=" https://www.tomjames.com/pics/blog/TJM66713_1157.jpg" alt="How To Build The Men's Capsule Wardrobe" onerror="removeImg()"  /></a>
                   </div>
                   <div class="div_blog_content" style="float:left; text-align:left;" >
                        <h2 id="blog_container" class="sectionheader alignleft" style="text-transform:capitalize;">
                            
                            <a href='/blog/how-to-build-the-mens-capsule-wardrobe/' style='text-decoration:none;'>How To Build The Men's Capsule Wardrobe</a>
                        </h2>
                        <div class="auth_div margintop15">
                            <span class="blogAuthor">By: Kim Keller, Clothier - Dallas, TX<br /> April 13, 2026</span>
                        </div>                    
                    </div>
                </div>
            
                <div class="div_posts" id="1061">
                   <div class="div_blog_image">
                        <a href='/blog/dressing-for-spring-events/'><img src=" https://www.tomjames.com/pics/blog/TJM66713_1152.jpg" alt="Dressing for Spring Events" onerror="removeImg()"  /></a>
                   </div>
                   <div class="div_blog_content" style="float:left; text-align:left;" >
                        <h2 id="blog_container" class="sectionheader alignleft" style="text-transform:capitalize;">
                            
                            <a href='/blog/dressing-for-spring-events/' style='text-decoration:none;'>Dressing for Spring Events</a>
                        </h2>
                        <div class="auth_div margintop15">
                            <span class="blogAuthor">By: Grace Lankford <br /> March 3, 2026</span>
                        </div>                    
                    </div>
                </div>
            
                <div class="div_posts" id="1059">
                   <div class="div_blog_image">
                        <a href='/blog/creating-a-capsule-wardrobe-that-works-for-women/'><img src=" https://www.tomjames.com/pics/blog/TJM66713_1146.jpg" alt="Creating A Capsule Wardrobe That Works For Women" onerror="removeImg()"  /></a>
                   </div>
                   <div class="div_blog_content" style="float:left; text-align:left;" >
                        <h2 id="blog_container" class="sectionheader alignleft" style="text-transform:capitalize;">
                            
                            <a href='/blog/creating-a-capsule-wardrobe-that-works-for-women/' style='text-decoration:none;'>Creating A Capsule Wardrobe That Works For Women</a>
                        </h2>
                        <div class="auth_div margintop15">
                            <span class="blogAuthor">By: Grace Lankford <br /> February 18, 2026</span>
                        </div>                    
                    </div>
                </div>
            
                <div class="div_posts" id="1058">
                   <div class="div_blog_image">
                        <a href='/blog/2026-color-trends-in-clothing/'><img src=" https://www.tomjames.com/pics/blog/TJM66713_1144.jpg" alt="2026 Color Trends In Clothing" onerror="removeImg()"  /></a>
                   </div>
                   <div class="div_blog_content" style="float:left; text-align:left;" >
                        <h2 id="blog_container" class="sectionheader alignleft" style="text-transform:capitalize;">
                            
                            <a href='/blog/2026-color-trends-in-clothing/' style='text-decoration:none;'>2026 Color Trends In Clothing</a>
                        </h2>
                        <div class="auth_div margintop15">
                            <span class="blogAuthor">By: Kim Keller, Clothier - Dallas, TX<br /> February 10, 2026</span>
                        </div>                    
                    </div>
                </div>
            
                <div class="div_posts" id="1057">
                   <div class="div_blog_image">
                        <a href='/blog/how-to-wear-a-vest:-a-comprehensive-guide-for-men/'><img src=" https://www.tomjames.com/pics/blog/TJM66713_1142.jpg" alt="How to Wear a Vest: A Comprehensive Guide for Men" onerror="removeImg()"  /></a>
                   </div>
                   <div class="div_blog_content" style="float:left; text-align:left;" >
                        <h2 id="blog_container" class="sectionheader alignleft" style="text-transform:capitalize;">
                            
                            <a href='/blog/how-to-wear-a-vest:-a-comprehensive-guide-for-men/' style='text-decoration:none;'>How to Wear a Vest: A Comprehensive Guide for Men</a>
                        </h2>
                        <div class="auth_div margintop15">
                            <span class="blogAuthor">By: Kim Keller, Clothier - Dallas, TX<br /> February 3, 2026</span>
                        </div>                    
                    </div>
                </div>
            
                <div class="div_posts" id="1054">
                   <div class="div_blog_image">
                        <a href='/blog/how-to-elevate-your-business-attire-in-2026/'><img src=" https://www.tomjames.com/pics/blog/TJM66713_1140.jpg" alt="How To Elevate Your Business Attire In 2026" onerror="removeImg()"  /></a>
                   </div>
                   <div class="div_blog_content" style="float:left; text-align:left;" >
                        <h2 id="blog_container" class="sectionheader alignleft" style="text-transform:capitalize;">
                            
                            <a href='/blog/how-to-elevate-your-business-attire-in-2026/' style='text-decoration:none;'>How To Elevate Your Business Attire In 2026</a>
                        </h2>
                        <div class="auth_div margintop15">
                            <span class="blogAuthor">By: Kim Keller, Clothier - Dallas, TX<br /> January 21, 2026</span>
                        </div>                    
                    </div>
                </div>
            
                <div class="div_posts" id="1014">
                   <div class="div_blog_image">
                        <a href='/blog/the-7-essential-wardrobe-pieces-every-professional-needs-in-2026/'><img src=" https://www.tomjames.com/pics/blog/TJM66713_1134.jpg" alt="The 7 Essential Wardrobe Pieces Every Professional Needs in 2026" onerror="removeImg()"  /></a>
                   </div>
                   <div class="div_blog_content" style="float:left; text-align:left;" >
                        <h2 id="blog_container" class="sectionheader alignleft" style="text-transform:capitalize;">
                            
                            <a href='/blog/the-7-essential-wardrobe-pieces-every-professional-needs-in-2026/' style='text-decoration:none;'>The 7 Essential Wardrobe Pieces Every Professional Needs in 2026</a>
                        </h2>
                        <div class="auth_div margintop15">
                            <span class="blogAuthor">By: Kim Keller, Clothier - Dallas, TX<br /> December 10, 2025</span>
                        </div>                    
                    </div>
                </div>
            
                <div class="div_posts" id="995">
                   <div class="div_blog_image">
                        <a href='/blog/master-autumn-business-attire-with-these-tips/'><img src=" https://www.tomjames.com/pics/blog/TJM66713_1132.jpg" alt="Master Autumn Business Attire with These Tips" onerror="removeImg()"  /></a>
                   </div>
                   <div class="div_blog_content" style="float:left; text-align:left;" >
                        <h2 id="blog_container" class="sectionheader alignleft" style="text-transform:capitalize;">
                            
                            <a href='/blog/master-autumn-business-attire-with-these-tips/' style='text-decoration:none;'>Master Autumn Business Attire with These Tips</a>
                        </h2>
                        <div class="auth_div margintop15">
                            <span class="blogAuthor">By: Kim Keller, Clothier - Dallas, TX<br /> November 4, 2025</span>
                        </div>                    
                    </div>
                </div>
            
                <div class="div_posts" id="946">
                   <div class="div_blog_image">
                        <a href='/blog/stand-out-in-style-with-a-western-suit/'><img src=" https://www.tomjames.com/pics/blog/TJM66713_1131.jpg" alt="Stand Out In Style With A Western Suit" onerror="removeImg()"  /></a>
                   </div>
                   <div class="div_blog_content" style="float:left; text-align:left;" >
                        <h2 id="blog_container" class="sectionheader alignleft" style="text-transform:capitalize;">
                            
                            <a href='/blog/stand-out-in-style-with-a-western-suit/' style='text-decoration:none;'>Stand Out In Style With A Western Suit</a>
                        </h2>
                        <div class="auth_div margintop15">
                            <span class="blogAuthor">By: Kim Keller, Clothier - Dallas, TX<br /> September 18, 2025</span>
                        </div>                    
                    </div>
                </div>
            
        
        <div class="ecomm-container cta">
            <div class="left-navigation alignleft" style="margin:0px;">
                
            </div>
            <div class="right-section align-right">
                <a id="lnkNext" href="Default.aspx?page=2">Next 10</a>
            </div>  
        </div> 
        <div class="clear"></div>
    </div>

                    <div class="clear"></div>
                </div>
                <div id="divGetStarted" class="lightgreyback">
                    <div class="section-title center">
                    </div>
                    <div class="clear"></div>
                    <div class="section-copy middle alignright">
                        <h3 class="black left">Get Started Today!</h3>
                            <p class="left black">Learn more about our product &amp; services from a world-class clothier and see if a professional wardrobe service fits your lifestyle.</p>
                            <p class="left black">If we're a good fit, our clothier will meet with you in your home or office at your convenience.</p>
                            <p class="left career black"><em>We use your zip code to align you with the nearest Tom James Clothier. We use your email and phone number to contact you and schedule your wardrobe consultation. See our <a href="/Privacy-Policy.aspx">Privacy Policy</a> for details.</em></p>
                    </div>
                    <div id="FootSAT" class="section-copy blue middle margintop20" style="display: inline-block;">
                        <script type="text/javascript">
                            BuildContactForm("FootSAT", "Footer")
                        </script>
                    </div>

                </div>
                <div class="clear"></div>

            </div>
            <div id="bottomreview" style="display: block; width: 90%; margin: auto; margin-top: 40px;">
                <div class="section-title center">
                    <h3 class="black">WHAT OUR CUSTOMERS SAY</h3>
                </div>
                <div class="white-section ">
                    <div class='section-copy justify margin20' itemscope itemtype='http://schema.org/Review'><p  itemprop='reviewBody'><em>"Tom James offers a great product at a fair price and they really make shopping easy. They are very responsive as well as professional and they help me coordinate my business wardrobe. I recommend them to anyone tired of buying clothes that don't fit or for people that hate the idea of spending free time at the mall."</em></p><p itemprop='author'><strong>C. Brian</strong><br />Document Management Company</p><div class='review-copy right'><a href="/KayKacheroski"'><div class='bio-small'><img src='/pics/people/03046.jpg' class:'clip150' style='width:inherit' alt='Custom Clothier Kay Kacheroski' /></div></a><div class='review-data'><p style='text-transform:uppercase; text-align:left; font-size:14px; letter-spacing: .05em;'>Clothier:</p><p style='text-transform:uppercase; text-align:left; font-size:1.3vw; letter-spacing: .05em; font-weight:100; margin:0px!important; padding:0px!important;' runat='server' class='left' itemprop='itemReviewed'><a href="/KayKacheroski">Kay Kacheroski</a></p><p style='text-transform:uppercase; text-align:left; font-size:14px; letter-spacing: .05em;'> Tom James of Minneapolis      </p></div></div></div><div class='section-copy justify margin20' itemscope itemtype='http://schema.org/Review'><p  itemprop='reviewBody'><em>"He can and will make you look and feel like a million dollars..."</em></p><p itemprop='author'><strong>Jim Lagina</strong><br />Strategic Business Consultant at Lagina Consulting</p><div class='review-copy right'><a href="/WadeAnding"'><div class='bio-small'><img src='/pics/people/30019.jpg' class:'clip150' style='width:inherit' alt='Custom Clothier Wade Anding' /></div></a><div class='review-data'><p style='text-transform:uppercase; text-align:left; font-size:14px; letter-spacing: .05em;'>Clothier:</p><p style='text-transform:uppercase; text-align:left; font-size:1.3vw; letter-spacing: .05em; font-weight:100; margin:0px!important; padding:0px!important;' runat='server' class='left' itemprop='itemReviewed'><a href="/WadeAnding">Wade Anding</a></p><p style='text-transform:uppercase; text-align:left; font-size:14px; letter-spacing: .05em;'> Tom James of Milwaukee        </p></div></div></div>
                    <div class="clear"></div>
                </div>
            </div>
            
        </div>
        <div id="divFooter" class="tj-footer footer lightgreyback">
            <div class="footernav">


                <div class="navcolumn">
                    <a href="/contact/">Contact</a>
                    <a href="/locations/">Locations</a>

                    <a href="/Shop/giftcards/">Gift Cards</a>
                    <a href="/mens-custom-clothing/custom-wedding-suits-and-tuxedos/">Weddings</a>
                    <a href="/blog/">Blog</a>
                </div>
                <div class="navcolumn">
                    <a href="/heritage/">Our Story</a>
                    <a href="/contact/your-personal-clothier.aspx">Find Your Clothier</a>
                    <a href="/news/">News</a>
                    <a href="/reviews/">Client Reviews</a>
                    <a href="http://careers.tomjames.com/" target="_blank">Sales Careers</a>
                </div>
                <div class="navcolumn">
                    <div class="be-ix-link-block">
                        <!--Link Block Target Div-->
                    </div>
                    <a onclick="CoverPop.start();" href="javascript:;">Change Region: </a>
                </div>
                <div class="social">
                    <a href="http://www.youtube.com/TomJamesCo" target="_blank">
                        <img src="/localpics/tom-james-youtube-dark.png?version=1234" alt="Tom James on Youtube" title="Tom James on Youtube" /></a>
                    <a href="http://www.linkedin.com/company/tom-james-company" target="_blank">
                        <img src="/localpics/tom-james-linkedin-dark.png?version=1234" alt="Tom James on LinkedIn" title="Tom James on LinkedIn" /></a>
                    <a href="https://www.facebook.com/tomjames" target="_blank">
                        <img src="/localpics/tom-james-facebook-dark.png?version=1234" alt="Tom James on Facebook" title="Tom James on Facebook" /></a>
                    <a href="https://www.instagram.com/tomjamesclothing/" target="_blank">
                        <img src="/localpics/tom-james-instagram-dark.png?version=1234" alt="Tom James on Instagram" title="Tom James on Instagram" /></a>
                </div>
                <div class="clear"></div>
            </div>
        </div>

        <div id="divSubfooter" class="subfooter">
            <div class="sub-copy" style="margin-top: 10px;">&copy; 2026 Tom James Company</div>
            <div class="sub-image-links">
                <a href="http://www.bbb.org/nashville/business-reviews/mens-clothing-and-furnishings-retail/tom-james-company-in-franklin-tn-13730#bbblogo" target="_blank">
                    <img src="/localpics/bbb.jpg" alt="Tom James is a member of the Better Business Bureau" />
                </a>
            </div>
            <div class="sub-links">
                <a href="/terms-of-use.aspx">Terms of Use </a>| 
                <a href="/Privacy-Policy.aspx">Privacy Policy</a>| 
                <a href="/accessibilty.aspx">Accessibility</a>|
                <a aria-label="Change Cookies Preferences" href="javascript:void(0);" id="linkopenmodal" onclick="openModal()" title="Change Cookies Preferences">Cookie Preferences</a>
            </div>
            <div class="clear"></div>
        </div>
        </div>
    <div id="CoverPop-cover" class="splash">
        <div id="CoverPop-content" class="splash-center center">
            <div class="splash-top">
                <img src="/localpics/tom-james-company-logo-dark.png" alt="Tom James Company Logo" />
                <h4 class="margintop20">Please Select a Region</h4>
            </div>
            <a onclick="SetRegion('US', true);" href="javascript:;" class="button-white sans">USA</a>
            <a onclick="SetRegion('GB', true);" href="javascript:;" class="button-white sans">Great Britain</a>
            <a onclick="SetRegion('AU', true);" href="javascript:;" class="button-white sans">Australia</a>
            <a onclick="SetRegion('CA', true);" href="javascript:;" class="button-white sans">Canada</a>
        </div>
        <!--end .splash-center -->
    </div>
        <!--end .splash -->
        <div class="exit-intent-popup">
            <div class="newsletter">
                <div class="exit-left">
                    <img src="/localpics/how-it-works-measurement.jpg" alt="A Tom James clothier measuring a client's chest." />
                </div>
                <div class="exit-right">
                    <h5 class="alignleft">Get a Free Wardrobe Consultation</h5>
                    <p class="career">
                        If you are wondering if our service is a good fit, our clothiers would be happy to talk with you and evaluate your current and future wardrobe needs.<br />
                        <br />
                        We serve busy, successful professionals by meeting them in their homes or offices, on the go, or wherever is convenient.
                    </p>
                    <span class="close">x</span>
                    <div class="cta">
                        <a href="/contact/get-started.aspx?source=popup">FIND A CLOTHIER IN YOUR AREA</a>
                    </div>
                </div>
            </div>
        </div>


        

        
        <div id="customConsentOverlay" class="modal-overlay">
            <!-- Modal content -->
            <div class="custom-consent-container" style="position: relative; margin: 0 auto;">
                <div class="custom-consent-content">
                    <div class="consent-logo">
                        <img alt="Tom James Logo" src="/localpics/TJ_Logo_Horiz.svg" style="max-width: 200px;" />
                    </div>
                    <div class="custom-consent-info">
                        <div style="margin-top: 0px;" aria-label="We use cookies">We use cookies.</div>
                        <p>
                            We use essential cookies to ensure our website functions properly. Analytic cookies help us improve content and personalize your experience.
                        <a href="/privacy-policy.aspx#cookies">Learn more about our cookie policy. </a>
                        </p>
                        <div class="custom-consent-options">
                            <label>Essential Cookies</label>
                            <label class="switch" for="tj-consent-essential" aria-label="Essential cookie switch">
                                <input type="checkbox" id="tj-consent-essential" checked="" disabled="" />
                                <span class="slider" style="background-color: #ccc; cursor: not-allowed;"></span>
                            </label>
                            <label>Analytics</label>
                            <label class="switch" for="tj-consent-gahs" aria-label="Analytic cookie switch">
                                <input type="checkbox" id="tj-consent-gahs" checked="checked"/>
                                <span class="slider"></span>
                            </label>
                        </div>
                    </div>
                    <div class="consent-actions">
                        <button class="btn accept text-sm" id="allowAll">Accept</button>
                        <button class="btn decline text-sm close-cookies" id="rejectAll">Decline</button>
                    </div>
                </div>
            </div>
        </div>

        <script type="text/javascript">

            (function () {
                function openModal() {
                    // Get the modal
                    const modal = document.getElementById("customConsentOverlay");

                    //const modal = document.getElementById('cookieModal');
                    const gaCheckbox = document.getElementById('tj-consent-gahs');

                    if (modal) {
                        // Set checkbox based on cookie
                        const cookies = document.cookie.split(';').reduce((acc, cookie) => {
                            const [key, value] = cookie.split('=');
                            acc[key.trim()] = value;
                            return acc;
                        }, {});

                        let statusCookiesGoogle = checkAnalyticsCookie()
                        if (statusCookiesGoogle == 'accepted' || statusCookiesGoogle == null) {
                            gaCheckbox.checked = true
                        } else {
                            gaCheckbox.checked = cookies.analytics == 'accepted';
                        }

                        modal.style.display = "block";
                    }

                    document.body.style.overflow = 'hidden';
                }

                function closeModal(event) {
                    const modal = document.getElementById('customConsentOverlay');
                    if (modal) {
                        modal.style.display = "none";
                    }
                    document.body.style.overflow = 'auto';

                    event.preventDefault();
                }

                function setCookie(name, value, days) {
                    let expires = "";
                    if (days) {
                        const date = new Date();
                        date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
                        expires = "; expires=" + date.toUTCString();
                    }
                    document.cookie = name + "=" + (value || "") + expires + "; path=/";
                }


                function handleAllowAll(event) {
                    setCookie('essentialcookie', 'accepted', 365);
                    const gaCheckbox = document.getElementById('tj-consent-gahs');
                    if (gaCheckbox.checked) {
                        setCookie('analytics', 'accepted', 365);
                        loadAnalyticsCookies(0)
                    }
                    else {
                        setCookie('analytics', 'rejected', 365);
                    }
                    closeModal(event);
                }

                function handleRejectAll(event) {
                    setCookie('essentialcookie', 'accepted', 365);

                    removeAnalyticsCookies();

                    setCookie('analytics', 'rejected', 365);
                    const gaCheckbox = document.getElementById('tj-consent-gahs');
                    gaCheckbox.checked = false;
                    closeModal(event);
                }

                //new function for google analytics
                function loadAnalyticsCookies(template) {
                    (function (w, d, s, l, i) {
                        w[l] = w[l] || []; w[l].push({
                            'gtm.start':
                                new Date().getTime(), event: 'gtm.js'
                        }); var f = d.getElementsByTagName(s)[0],
                            j = d.createElement(s), dl = l != 'dataLayer' ? '&l=' + l : ''; j.async = true; j.src =
                                'https://www.googletagmanager.com/gtm.js?id=' + i + dl; f.parentNode.insertBefore(j, f);
                    })(window, document, 'script', 'dataLayer', 'GTM-NQW26FJ');

                    const script = document.createElement('script');
                    script.async = true;
                    if (template == 0) {
                        script.src = "https://www.googletagmanager.com/gtag/js?id=GTM-NQW26FJ-4";
                    } else {
                        script.src = "https://www.googletagmanager.com/gtag/js?id=GTM-NQW26FJ-3";
                    }
                    document.head.appendChild(script);

                    script.onload = function () {
                        window.dataLayer = window.dataLayer || [];
                        function gtag() { dataLayer.push(arguments); }
                        gtag('js', new Date());

                        if (template == 0) {
                            gtag('config', 'GTM-NQW26FJ-4');
                        } else {
                            gtag('config', 'GTM-NQW26FJ-3');
                        }
                    };
                }

                function removeAnalyticsCookies() {
                    let cookieNames = ['_ga', '_ga_357819016', '_ga_E220M1QFKZ', '_ga_PMMDSPNJNX', '_ga_TVGRK25BHB', '_gcl_au', '_gid', 'usid'];

                    // Set every cookie to expired
                    cookieNames.forEach(cookieName => {
                        document.cookie = cookieName + "=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/;";
                    });

                }


                function checkEssentialCookie() {
                    const essentialCookieValue = getCookie('essentialcookie');
                    if (essentialCookieValue == 'accepted') {
                        return 'accepted';
                    } else {
                        return null;
                    }
                }

                function checkAnalyticsCookie() {
                    const analyticsCookieValue = getCookie('analytics');
                    if (analyticsCookieValue == 'accepted') {
                        return 'accepted';

                    } else if (analyticsCookieValue == 'rejected') {
                        return 'rejected';
                    } else {
                        return null;
                    }
                }

                //document.getElementById('allowAll').addEventListener('click', handleAllowAll);

                $("#allowAll").on("click", function (event) {
                    handleAllowAll(event);
                });


                $("#rejectAll").on("click", function (event) {
                    handleRejectAll(event);
                });

                document.addEventListener('keydown', function (event) {
                    let statusCookies = checkEssentialCookie()
                    if (event.key == "Escape" && statusCookies != null) {
                        closeModal(event);
                    }
                });

                // Check cookie on page load
                window.addEventListener('load', function () {
                    let statusEssential = checkEssentialCookie()
                    if (statusEssential == 'accepted') {
                        console.log('essential cookie accepted.');
                    } else {
                        console.log('essential analytics cookie ' + statusEssential);
                        openModal();
                    }
                });

                // Make functions globally available
                window.openModal = openModal;
                window.closeModal = closeModal;
            })();
        </script>

        



        <!-- Listrak Analytics - Submit Tracking Click -->
        <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
        <script src="/localinc/jquery.fancybox.js"></script>

        <script type="text/javascript">
            function useAnalyticsCookie() {
                const analyticsCookieValue = getCookie('analytics');
                if (analyticsCookieValue == 'accepted') {
                    return true;

                } else if (analyticsCookieValue == 'rejected') {
                    return false;
                } else {
                    return false;
                }
            }

            (function (d) {
                if (useAnalyticsCookie()) {
                    if (document.addEventListener) document.addEventListener('ltkAsyncListener', d);
                    else {
                        e = document.documentElement; e.ltkAsyncProperty = 0; e.attachEvent('onpropertychange', function (e) {
                            if (e.propertyName == 'ltkAsyncProperty') { d(); }
                        });
                    }
                }

            })(function () {
                /********** Begin Custom Code **********/
                if (useAnalyticsCookie()) {
                    _ltk.Click.Submit();
                }
                /********** End Custom Code **********/
            });

            if (useAnalyticsCookie()) {
                var biJsHost = (("https:" == document.location.protocol) ? "https://" : "http://");
                (function (d, s, id, tid, vid) {
                    var js, ljs = d.getElementsByTagName(s)[0];
                    if (d.getElementById(id)) return; js = d.createElement(s); js.id = id;
                    js.src = biJsHost + "cdn.listrakbi.com/scripts/script.js?m=" + tid + "&v=" + vid;
                    ljs.parentNode.insertBefore(js, ljs);
                })(document, 'script', 'ltkSDK', 'KWWNBIgcQLGC', '1');
            }

            function myMobileFunction() {
                var x = document.getElementById("myLinks");
                if (x.style.display === "block") {
                    x.style.display = "none";
                } else {
                    x.style.display = "block";
                }
            }

        </script>


    </form>

</body>
</html>
