##<script type="text/javascript" src="https://staging.fnarena.com/wp-content/themes/fnarena/js/jquery.imagetick.min.js"></script>
		<script src="https://www.google.com/recaptcha/api.js" async defer></script>
		<script>
			jQuery(document).ready(function($){
			var sendQuestion = $("input:radio[name='subject']");
			sendQuestion.imageTick({
				tick_image_path: "https://staging.fnarena.com/wp-content/themes/fnarena/images/radiobtn_active.png", 
				no_tick_image_path: "https://staging.fnarena.com/wp-content/themes/fnarena/images/radiobtn.png",
				image_tick_class: "radios"
			});
			$("img.radios").css('cursor','pointer');
			jQuery(".contact-form").submit(function(){		
				if (jQuery('#g-recaptcha-response').val() == '' || jQuery('#g-recaptcha-response').val() == null) {
					jQuery('.error-captcha').css("display","block");
					return false;
				} else {
					jQuery('.error-captcha').css("display","none");
					return true;
				}
			});
		});
		</script> 
		<div class="large-12 no-pad columns bottoms">
			<form class="contact-form" data-abide action="https://staging.fnarena.com/wp-content/themes/fnarena/action-forms/wp_fnc_contact_us.php" method="post">
				<label>
					  <div class="medium-12">
						<input type="radio" name="subject" id="editor" value="Editor" checked>To the Editor
						<input type="radio" name="subject" id="support" value="Support">General Support
					  </div>
					  <div class="medium-12">
						<label style="font-weight: bold;">Name</label>
						<input type="text" placeholder="Name" id="name" name="name" required value="">
						<small class="error" data-error-message="">This field is required.</small>
					  </div>
					  <div class="medium-12">
						<label style="font-weight: bold;">Email</label>
						<input type="text" placeholder="Email" id="email" name="email" required value="">
						<small class="error" data-error-message="">This field is required.</small>
					  </div>
					  <div class="medium-12">
						<label style="font-weight: bold;">Phone</label>
						<input type="text" placeholder="Phone" id="phone" name="phone" required value="">
						<small class="error" data-error-message="">This field is required.</small>
					  </div>
					  <div class="medium-12">
						  <label style="font-weight: bold;">Please enter your message</label>
						  <textarea placeholder="Message" name="editorMessage" required></textarea>
						  <small class="error textarea-error" data-error-message="" >This field is required.</small>
					  </div>
				</label>
				<div class="g-recaptcha" data-sitekey="6LdspwgUAAAAAJrvCz5niP0uwhkt82OhCTnrNna4"></div>
				<p style="color:red !important; display: none;" class="error-captcha">Please fill up the captcha</p>
				<input type="submit" name="btnSendEditor" value="SEND" class="right" style="padding: 10px 30px; font-weight:bold;">
			</form>
		</div>
		<div class="clearfix"></div>	
			<style>
			.ui-widget-content a { color: #12417f; }
			.ui-menu-item {
				padding-left:25px;
			}
			.click-here{
				white-space: nowrap;
				padding-left:8px;
				padding-top:2px;
			}
			.click-below{
				white-space: nowrap;
				padding-left:25px;
				padding-top:10px;
				padding-bottom:10px;
			}
			ul.ui-autocomplete > li.click-here:hover,
			ul.ui-autocomplete > li.ui-menu-item:hover {
				background:#dbeef3;
			}
			</style>
			<div class="large-12 columns no-pad search_form">
				<form action="https://staging.fnarena.com/index.php/search/" style="background:#f8f8f8; padding: 14px 18px 16px 18px;" id="searchform" method="get" role="search" class="search-form">
					<h5 class="helveLTbold" style="margin-bottom:5px;">Search Stocks & Stories</h5>
					<div class="row collapse">
						<div class="medium-9 large-9 columns">
							<input type="text" placeholder="Enter company name or ASX code" id="s" name="searchkeyword" value="" class="nomarginbot">
						</div>
						<div class="medium-3 large-3 columns">
							<input type="submit" class="button postfix tiny nomarginbot" value="Search" id="searchsubmit" style="border-radius:0px !important;">
						</div>
						<div class="clearfix"></div>
					</div>
				</form>
			</div>
			<script>

            jQuery(document).ready(function(){

                  jQuery( "#s" ).autocomplete({
				    source: function(request, response) {
				        if (request.term.length < 3) {
				            response([]);
				            return;
				        }
				        
				        jQuery.ajax({
				            url: '/wp-content/themes/fnarena/ajax_company_search.php',
				            dataType: "json",
				            data: {
				                term: request.term
				            },
				            success: function(data) {
				                // First deduplicate the Ajax results
				                var uniqueResults = [];
				                var seenLabels = {};
				                
				                // Remove duplicates from initial data
				                jQuery.each(data, function(i, item) {
				                    if (!seenLabels[item.label]) {
				                        seenLabels[item.label] = true;
				                        uniqueResults.push(item);
				                    }
				                });
				                
				                // Filter for top suggestions (exact matches at start)
				                var top_suggestions = jQuery.grep(uniqueResults, function(n, i) {
				                    return (n.label.substr(0, request.term.length).toLowerCase() == request.term.toLowerCase());
				                });
				                
				                // Since we've already deduplicated, we can safely merge
				                var final_results = jQuery.merge(top_suggestions, uniqueResults);
				                
				                // Remove any duplicates that might have been created during merge
				                var finalUnique = [];
				                seenLabels = {};
				                
				                jQuery.each(final_results, function(i, item) {
				                    if (!seenLabels[item.label]) {
				                        seenLabels[item.label] = true;
				                        finalUnique.push(item);
				                    }
				                });
				                
				                response(finalUnique);
				            },
				            error: function() {
				                response([]);
				            }
				        });
				    },
				    minLength: 3,
				    open: function(e, ui) {
				        var acData = jQuery(this).data('ui-autocomplete');
				        acData.menu.element.find('li').each(function() {
				            var me = jQuery(this);
				            var keywords = acData.term.split(' ').join('|');
				            me.html(me.text().replace(new RegExp("(" + keywords + ")", "gi"), '<b>$1</b>'));
				        });
				        
				        var searchletter = acData.term.split(' ').join('|');
				        jQuery('ul.ui-autocomplete').prepend('<li class="click-here"><a href="/index.php?s='+searchletter+'">Click here to search using : '+searchletter+'</a></li>');
				        jQuery('ul.ui-autocomplete').prepend('<li class="click-below">Click below to search by company : </li>');
				    }
				});
            });
            </script>
			<div class="clearfix"></div>
	        <div class="clearfix"></div>
        <div class="large-12 medium-12 columns no-pad martop-15 latest-news">
            <h2>Latest News</h2>
            <div class="inner-area">
            <table style='margin:0px; border:0px;'>                        <tr>
                            <td valign="top" align="left" style="background: white; font-size:16px; padding-top:2px; border:0px; ">
                                <span>1</span>
                            </td>
                            <td valign="top" align="left" style="background: white; padding:0px; border:0px; ">
                                <h6 class="marbot-5 helveLTstdCN" style="padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-bottom: 0px;">
                                    <a href="https://staging.fnarena.com/index.php/2025/10/07/technologyones-saas-transformation-complete/">TechnologyOne&#8217;s SaaS Transformation &#8216;Complete&#8217;</a>
                                </h6>
                                <p class="s12 marbot-0 gray ">Oct 07 2025 - <font color="#12417F"><a href="https://staging.fnarena.com/index.php/financial-news/daily-financial-news/category/australia/" rel="category tag">Australia</a></font></p>
                            </td>
                        </tr>
                        <tr><td colspan='2' style="background: white; padding:10px 0px; border:0px; "><hr style="margin:0px !important;"/></td></tr>
                                            <tr>
                            <td valign="top" align="left" style="background: white; font-size:16px; padding-top:2px; border:0px; ">
                                <span>2</span>
                            </td>
                            <td valign="top" align="left" style="background: white; padding:0px; border:0px; ">
                                <h6 class="marbot-5 helveLTstdCN" style="padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-bottom: 0px;">
                                    <a href="https://staging.fnarena.com/index.php/2025/10/06/stock-market-in-september-republish/">Stock Market in September Republish</a>
                                </h6>
                                <p class="s12 marbot-0 gray ">Oct 06 2025 - <font color="#12417F"><a href="https://staging.fnarena.com/index.php/financial-news/daily-financial-news/category/international/" rel="category tag">International</a></font></p>
                            </td>
                        </tr>
                        <tr><td colspan='2' style="background: white; padding:10px 0px; border:0px; "><hr style="margin:0px !important;"/></td></tr>
                                            <tr>
                            <td valign="top" align="left" style="background: white; font-size:16px; padding-top:2px; border:0px; ">
                                <span>3</span>
                            </td>
                            <td valign="top" align="left" style="background: white; padding:0px; border:0px; ">
                                <h6 class="marbot-5 helveLTstdCN" style="padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-bottom: 0px;">
                                    <a href="https://staging.fnarena.com/index.php/2025/10/06/stock-market-in-september/">Stock Market in September</a>
                                </h6>
                                <p class="s12 marbot-0 gray ">Oct 06 2025 - <font color="#12417F"><a href="https://staging.fnarena.com/index.php/financial-news/daily-financial-news/category/international/" rel="category tag">International</a></font></p>
                            </td>
                        </tr>
                        <tr><td colspan='2' style="background: white; padding:10px 0px; border:0px; "><hr style="margin:0px !important;"/></td></tr>
                                            <tr>
                            <td valign="top" align="left" style="background: white; font-size:16px; padding-top:2px; border:0px; ">
                                <span>4</span>
                            </td>
                            <td valign="top" align="left" style="background: white; padding:0px; border:0px; ">
                                <h6 class="marbot-5 helveLTstdCN" style="padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-bottom: 0px;">
                                    <a href="https://staging.fnarena.com/index.php/2025/10/06/technologyone-story-by-novi/">TechnologyOne Story by Novi</a>
                                </h6>
                                <p class="s12 marbot-0 gray ">Oct 06 2025 - <font color="#12417F"><a href="https://staging.fnarena.com/index.php/financial-news/daily-financial-news/category/international/" rel="category tag">International</a></font></p>
                            </td>
                        </tr>
                        <tr><td colspan='2' style="background: white; padding:10px 0px; border:0px; "><hr style="margin:0px !important;"/></td></tr>
                                            <tr>
                            <td valign="top" align="left" style="background: white; font-size:16px; padding-top:2px; border:0px; ">
                                <span>5</span>
                            </td>
                            <td valign="top" align="left" style="background: white; padding:0px; border:0px; ">
                                <h6 class="marbot-5 helveLTstdCN" style="padding-top: 0px; padding-bottom: 0px; margin-top: 0px; margin-bottom: 0px;">
                                    <a href="https://staging.fnarena.com/index.php/2025/06/12/geopolitical-hedging-drives-investor-confidence-in-commbank/">Geopolitical Hedging Drives Investor Confidence in CommBank</a>
                                </h6>
                                <p class="s12 marbot-0 gray ">Jun 12 2025 - <font color="#12417F"><a href="https://staging.fnarena.com/index.php/financial-news/daily-financial-news/category/general/" rel="category tag">General</a></font></p>
                            </td>
                        </tr>
                        <tr><td colspan='2' style="background: white; padding:10px 0px; border:0px; "><hr style="margin:0px !important;"/></td></tr>
                                    </table>            </div>
        </div>
        <div class="clearfix"></div>
							
				<div><div class="textwidget custom-html-widget"></div></div>
						<!-- <div class="large-12 medium-12 columns no-pad marbot-5">
				<script async src="https://www.googletagservices.com/tag/js/gpt.js"></script>
				<script>
					var googletag = googletag || {};
					googletag.cmd = googletag.cmd || [];
				</script>

				<div id="div-gpt-ad-1520311188559-0">
					<script>
						googletag.cmd.push(function() {
							googletag.defineSlot('/76291182/FNarena-MREC', [300, 250], 'div-gpt-ad-1520311188559-0').addService(googletag.pubads());
							googletag.enableServices();
							googletag.display('div-gpt-ad-1520311188559-0');
						});
					</script>
				</div>
			</div> -->
	
		<div class="large-12 medium-12 columns no-pad most-popular">
			<h2>Most Popular</h2>
			<div class="inner-area">
              <table style='margin:0px; border:0px;'>							<p>No Data</p>
														<p>No Data</p>
														<p>No Data</p>
														<p>No Data</p>
														<p>No Data</p>
														<p>No Data</p>
							</table>            </div>
		</div>
		<div class="clearfix"></div>
	{"id":23,"date":"2015-02-27T09:09:34","date_gmt":"2015-02-26T22:09:34","guid":{"rendered":"http:\/\/www.fnarena.com\/?page_id=23"},"modified":"2023-05-29T14:01:43","modified_gmt":"2023-05-29T04:01:43","slug":"contact-us","status":"publish","type":"page","link":"https:\/\/staging.fnarena.com\/index.php\/contact-us\/","title":{"rendered":"Contact Us"},"content":{"rendered":"<div class=\"wpb-content-wrapper\"><p>[vc_row][vc_column width=&#8221;3\/4&#8243;][vc_custom_heading text=&#8221;Contact Us&#8221; font_container=&#8221;tag:h1|text_align:left&#8221; use_theme_fonts=&#8221;yes&#8221;][vc_column_text]FNArena is a digital publishing company, and we strongly encourage the use of our online forms or emails if you wish to get in contact with our team. We are a dedicated team of finance journalists, and will address your questions and issues in a timely manner. \u00a0Please fill out the form below to get in touch with us, and we&#8217;ll come back to you.[\/vc_column_text][vc_column_text][\/vc_column_text][\/vc_column][vc_column width=&#8221;1\/4&#8243;][vc_column_text css=&#8221;.vc_custom_1467907386281{margin-bottom: 0px !important;}&#8221;][\/vc_column_text][vc_column_text][\/vc_column_text][vc_column_text][\/vc_column_text][\/vc_column][\/vc_row]<\/p>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>[vc_row][vc_column width=&#8221;3\/4&#8243;][vc_custom_heading text=&#8221;Contact Us&#8221; font_container=&#8221;tag:h1|text_align:left&#8221; use_theme_fonts=&#8221;yes&#8221;][vc_column_text]FNArena is a digital publishing company, and we strongly encourage the use of our online&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"acf":[],"_links":{"self":[{"href":"https:\/\/staging.fnarena.com\/index.php\/wp-json\/wp\/v2\/pages\/23"}],"collection":[{"href":"https:\/\/staging.fnarena.com\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/staging.fnarena.com\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/staging.fnarena.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/staging.fnarena.com\/index.php\/wp-json\/wp\/v2\/comments?post=23"}],"version-history":[{"count":0,"href":"https:\/\/staging.fnarena.com\/index.php\/wp-json\/wp\/v2\/pages\/23\/revisions"}],"wp:attachment":[{"href":"https:\/\/staging.fnarena.com\/index.php\/wp-json\/wp\/v2\/media?parent=23"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}