Login To Your Profile - Reyes (2024)

Skip to content

Current Employees

Current Employee

JOBS FOR CURRENT EMPLOYEES

By clicking on the Current Employee Job Search button, you are confirming that you are a current employee of Reyes Family of Businesses. Only applications from current Reyes Family of Business employees will be accepted via this link.

I am a Current Employee

If you are not a current employee, view and apply for jobs as an external applicant.

Search Jobs

  • English
    • Canadian French
  • English
    • Canadian French

Current Employees

Current Employee

JOBS FOR CURRENT EMPLOYEES

By clicking on the Current Employee Job Search button, you are confirming that you are a current employee of Reyes Family of Businesses. Only applications from current Reyes Family of Business employees will be accepted via this link.

I am a Current Employee

If you are not a current employee, view and apply for jobs as an external applicant.

Search Jobs

Job Search

Menu

Login To Your Profile2023-09-07T04:54:45+00:00

Login To Your Profile - Reyes (11)

Widget Title

View 17 jobs >

Login To Your Profile - Reyes (12)

Widget Title

View 198 jobs >

Login To Your Profile - Reyes (13)

Widget Title

View 114 jobs >

Login To Your Profile - Reyes (14)

Widget Title

View 195 jobs >

Login To Your Profile - Reyes (15)

Widget Title

View 44 jobs >

SITEMAP

  • AREAS OF TALENT
  • LOCATIONS
  • WHAT SETS US APART
  • EVENTS

OUR BUSINESSES

  • REYES HOLDINGS
  • REYES BEVERAGE GROUP
  • MARTIN BROWER
  • REYES COCA-COLA BOTTLING
  • REYES FLEET MANAGEMENT

SOCIAL

EMPLOYEES

  • EMPLOYEE JOB SEARCH
  • PRIVACY POLICY
  • NEWS

©2021 REYES HOLDINGS

' return output; } this.removeMarker = function() { jQuery('[data-marker-name="'+this.name+'"]').remove(); delete this.map.mapMarkers[this.name]; this.map.openedModals.removeElement(this.modal); } this.show = function() { this.markerContainer.append(this.generateMarker()); } } // MapMarker class end function MarkerModal(modalTitle, content, linkedMapMarker) { this.title = modalTitle; this.linkedMapMarker = linkedMapMarker; // linked to modal map marker object this.content = content; this.positionedElemOffsetX = null; this.positionedElemOffsetY = null; self = this; this.generateModal = function() { output = '

' + this.title + '

'; output += '

' + this.content + '

'; output += '

'; return output; } //Added by Somesh for Location data in bottom this.locData = function() { output = loc_details = "

"+ this.title +"

"+ this.content +"

"; return output; } this.isModalActive = function() { return (jQuery('[data-marker-name="' + this.linkedMapMarker.name + '"]').hasClass('active')); } this.closeModal = function() { jQuery('[data-marker-name="'+ this.linkedMapMarker.name +'"] .hmap_marker_content').remove(); //Added by Somesh to remove existing location after click on another location jQuery('[data-marker-name="'+ this.linkedMapMarker.name +'"]').parent().parent().find('.location_details').remove(); this.linkedMapMarker.map.openedModals.removeElement(this); this.linkedMapMarker.deactivate(); this.linkedMapMarker.unsetCurrent(); if (this.linkedMapMarker.map.openedModals.length < 1) { this.linkedMapMarker.map.maxZindex = 2; }; } this.openModal = function() { this.linkedMapMarker.activate(); this.linkedMapMarker.setCurrent(); // generate modal and insert it into block with clicked map marker; jQuery('[data-marker-name="' + this.linkedMapMarker.name + '"]').append(this.generateModal()); //Added by Somesh for appending Location data in bottom jQuery('.location_data').append(this.locData()); // add currently opened modal to array with all opened modals; this.linkedMapMarker.map.openedModals.push(this); // center opened modal on map marker (css); this.clearPosition(); } this.toggleModal = function() { this.openModal(); // if ( ! this.isModalActive() ) { // this.openModal(); // } // else { // this.closeModal(); // } } this.clearPosition = function() { $markerContentWidth = jQuery('[data-marker-name="'+ this.linkedMapMarker.name +'"]').find('.hmap_marker_content').outerWidth(); $markerContentHeight = jQuery('[data-marker-name="'+ this.linkedMapMarker.name +'"]').find('.hmap_marker_content').outerHeight(); // if modal content block width is grater than window width set modal with to window width if ($markerContentWidth > jQuery(window).outerWidth()) { $markerContentWidth = jQuery(window).outerWidth()-1; } $markerWidth = jQuery('.hmap_marker').outerWidth(); $markerHeight = jQuery('.hmap_marker').outerHeight(); $positionedElem = jQuery('[data-marker-name="'+ this.linkedMapMarker.name +'"]').find('.hmap_marker_content'); self.positionedElemOffsetX = -($markerContentWidth/2)+$markerWidth/2; self.positionedElemOffsetY = $markerHeight/2; $positionedElem.css({ 'left': self.positionedElemOffsetX, 'bottom': self.positionedElemOffsetY, 'max-width': jQuery(window).outerWidth() }); // if modal is off screen changes its left/right position until modal is fully on screen whileOffScreen(); } function whileOffScreen() { // while is overflowing screen on the left while (($positionedElem.offset().left < 0)&(!($positionedElem.offset().left + $markerContentWidth > jQuery(window).outerWidth()))) { self.positionedElemOffsetX += 1; $positionedElem.css({ 'left': self.positionedElemOffsetX, 'bottom': self.positionedElemOffsetY, 'max-width': jQuery(window).outerWidth()-1 }); } // while is overflowing screen on the rifht while (($positionedElem.offset().left + $markerContentWidth > jQuery(window).outerWidth())&(!($positionedElem.offset().left < 0))) { self.positionedElemOffsetX += -1; $positionedElem.css({ 'left': self.positionedElemOffsetX, 'bottom': self.positionedElemOffsetY, 'max-width': jQuery(window).outerWidth()-1 }); } // while is overflowing srceen on top while($positionedElem.offset().top<0) { self.positionedElemOffsetY += -1; $positionedElem.css({ 'left': self.positionedElemOffsetX, 'bottom': self.positionedElemOffsetY, 'max-width': jQuery(window).outerWidth()-1 }); } } } // MarkerModal class end // Required functionality methods and functions Array.prototype.removeElement = function(elem) { var index = this.indexOf(elem); if (index > -1) { this.splice(index, 1); } } function generateName(namebase) { return namebase+Math.floor((Math.random() * 1000) + 1); } function generateUniqueMarkerName(map, name) { var namebase = 'mapMarker'; var objname; // check if param name is specified, if so use its name and check for duplicates if(typeof name !== 'undefined') { objname = name; } else { objname = generateName(namebase); } var infiniteLoopCheck = 0; while (map.mapMarkers[objname]) { objname = generateName(namebase); infiniteLoopCheck++; if (infiniteLoopCheck > 1000) { console.error('After 10000 tries couldnt generate unique name for MapMarker object. Change max number in MapMarker object name [function generateName()]. Default max: 1000'); return false; }; } return objname; } function getKBmap(name) { for (var i=0, iLen=addedKBmaps.length; i

before last

by somesh to add Location data div in bottom var output = '

Login To Your Profile - Reyes (16)

'; jQuery('#'+name).append(output); window[name] = new Map(name, mapDataJSON); addedKBmaps.push(window[name]); }}

Page load link
Login To Your Profile - Reyes (2024)

FAQs

Who are the Reyes family billionaires? ›

Christopher Reyes (born 1953) is an American billionaire businessman and the co-chairman, with his brother Jude Reyes, of Reyes Holdings, a food and beverage production and distribution company, ranked by Forbes in 2023 as the 6th largest privately held company in the US with $40 billion in annual revenue.

What do Reyes Holdings do? ›

Reyes Holdings, LLC is an American food and beverage distributor and bottler that ranks as the 6th largest privately held company in the United States, with annual sales in excess of $40B USD.

Is Martin Brower publicly traded? ›

Is The Martin-Brower Company a private or public company? The Martin-Brower Company is a Private company.

Who is the CFO of Reyes Holdings? ›

Dan Doheny serves as the Sr VP, CFO of Reyes Holdings. Thomas Clewett serves as the Senior Vice President & Chief Technology Officer of Reyes Holdings. Thomas started at Reyes... Dean Janke serves as the Executive Vice President, Corporate Development of Reyes Holdings.

Who are the 3 richest families in America? ›

The Ten Richest Families in America and Their Rise to Riches
  1. Walton ($130 billion) ...
  2. Koch ($82 billion) ...
  3. Mars ($78 billion) ...
  4. Cargill-MacMillan ($49 billion) ...
  5. Cox ($41 billion) ...
  6. S.C. Johnson ($30 billion) ...
  7. Pritzker ($29 billion) ...
  8. Johnson ($28.5 billion)

Who is the richest Hispanic family? ›

The ten richest Latin Americans in 2023, by wealth (in billion U.S. dollars)
CharacteristicWealth in billion U.S. dollars
Carlos Slim Helu & family (Mexico)93
German Larrea Mota Velasco & family (Mexico)26.6
Iris Fontbona & family (Chile)23.1
Jorge Paulo Lemann & family (Brazil)15.8
6 more rows
Feb 28, 2024

Does McDonald's own Martin Brower? ›

In 1998, Reyes Holdings acquired Martin Brower and began its long-standing relationship with the iconic restaurant chain McDonald's. After working together for years, both the Reyes brothers and McDonald's wanted to grow their partnership and waited for an opportunity to arise.

What is the Reyes Holdings controversy? ›

Reyes Holdings hit with lawsuit alleging 401(k) mismanagement. The suit claims the beer-distribution giant's retirement plan shortchanged participants through excessive fees and poor investment performance.

Who is the CEO of Martin Brower? ›

Bob McGonigle - The Martin-Brower Company, L.L.C.

How many employees does Reyes have? ›

About us. Reyes Holdings is a global leader in the production and distribution of food and beverage products. Annually, we deliver over 1.3 billion cases from 200+ locations worldwide with the support of 36,000+ talented employees.

Who is the youngest CFO of a publicly traded company? ›

Nolan Watson became the CFO of Silver Wheaton at age 26.

Within a year Nolan was named as the company's chief financial officer, making him the youngest-ever CFO of a New York Stock Exchange-listed company.

Who is the CEO of Reyes? ›

Brothers Chris and Jude Reyes co-chair Reyes Holdings, a food and beverage distributor with $40 billion in sales and nearly 36,000 employees. Younger brother Duke Reyes is CEO. Brothers James, Tom and William are executives at the company.

Who are the Reyes family? ›

Reyes family
  • Brothers Chris and Jude Reyes co-chair Reyes Holdings, a food and beverage distributor with $40 billion in sales and nearly 36,000 employees.
  • Younger brother Duke Reyes is CEO.

Which family owns most of the world's wealth? ›

The Al Nahyan family, the Royal Family of Abu Dhabi, is regarded as the richest family in the world, with an estimated net worth of $305 billion.

Who is the richest family in Illinois? ›

According to Forbes, Chicago's Lukas Walton is again the richest person in the state, raising his net worth to just shy of $28 billion. Walton is the grandson of Walmart founder Sam Walton. His father John Walton died in a 2005 plane crash, with Lukas inheriting one-third of his fortune, according to Forbes.

How many Mexican billionaires exist? ›

Key Takeaways. Mexico is home to 14 of the world's 2,640 billionaires, as measured in U.S. dollars. Most of these billionaires inherited large fortunes that they could reinvest and grow. Carlos Slim Helu, the wealthiest person in Mexico, made his $93 billion fortune in telecommunications.

References

Top Articles
Latest Posts
Article information

Author: Kelle Weber

Last Updated:

Views: 6656

Rating: 4.2 / 5 (73 voted)

Reviews: 80% of readers found this page helpful

Author information

Name: Kelle Weber

Birthday: 2000-08-05

Address: 6796 Juan Square, Markfort, MN 58988

Phone: +8215934114615

Job: Hospitality Director

Hobby: tabletop games, Foreign language learning, Leather crafting, Horseback riding, Swimming, Knapping, Handball

Introduction: My name is Kelle Weber, I am a magnificent, enchanting, fair, joyous, light, determined, joyous person who loves writing and wants to share my knowledge and understanding with you.