Regional Export Manager
Associated Brands Industries Ltd – Trinidad
REGIONAL EXPORT MANAGER
PRIMARY RESPONSIBILITIES:
- To grow and develop regional market sales.
- Achieve regional sales through business development activities, forecasting, budgeting using initiative strategies.
- Market research and analysis, knowledge on competitor activities.
- Develop new business and growth opportunities throughout the region.
Knowledge, Skills and Competencies
- Degree in International Business or Marketing.
- 5 years’ Sales Experience in fast moving commodities.
- A second language would be an asset.
- Ability to travel regularly and at short notice (can be up to three weeks per month).
function css(element, style) {
for (const property in style) {
element.style[property] = style[property];
}
}
function onScroll(fixedContainer) {
if (window.pageYOffset <= 0) {
css(fixedContainer, {
boxShadow: "",
backgroundColor: "",
})
}
else {
css(fixedContainer, {
boxShadow: "0px 1px 12px 1px rgba(0,0,0,0.4)",
backgroundColor: "white",
})
}
}
function onMediaQuery(mediaQuery) {
// If we're in mobile
var isMobile = !mediaQuery.matches;
// Get site header
let siteHeader = document.querySelector('.site-header');
// Get desktop header
let desktopHeader = document.getElementById('ast-desktop-header');
// Get mobile header
let mobileHeader = document.getElementById('ast-mobile-header');
// Store height of header
let navHeight = isMobile ? siteHeader.offsetHeight : desktopHeader.offsetHeight;
let header = isMobile ? mobileHeader : desktopHeader;
// Store the html inside of the header
let headerHTML = header.innerHTML;
// This is the container that is "fixed".
let newHTML = `
` + headerHTML + "
";
// Wrap the fixed content in a div that's the same height, to create the "margin" to push the rest of the site down
let spacerHTML = `${newHTML}
`;
header.innerHTML = spacerHTML;
let fixedContainer = document.getElementById('header-fixed-container');
css(fixedContainer, {
position: "fixed",
width: "100%",
transition: "background-color 0.2s linear"
});
onScroll(fixedContainer);
window.onscroll = () => {
onScroll(fixedContainer);
};
}
window.addEventListener("load", function() {
let mediaQuery = window.matchMedia("(min-width: 921px)");
onMediaQuery(mediaQuery);
});