Skip to Content
SulleyBear Solutions
Shop
All Products
BigToolRack
Boss
CTA
Discount Used Parts
Frontier
Hardware
HLA
John Deere
Kioti
Kubota Land Pride
Woods
Details
SnowBlower I.D.
Quick Tach Hitch Info
Search
Home
Plow Kit Details
Tech Articles
Our K9 Friends
About Us
0
0
SulleyBear Solutions
Shop
All Products
BigToolRack
Boss
CTA
Discount Used Parts
Frontier
Hardware
HLA
John Deere
Kioti
Kubota Land Pride
Woods
Details
SnowBlower I.D.
Quick Tach Hitch Info
Search
Home
Plow Kit Details
Tech Articles
Our K9 Friends
About Us
0
0
Folder: Shop
Back
All Products
BigToolRack
Boss
CTA
Discount Used Parts
Frontier
Hardware
HLA
John Deere
Kioti
Kubota Land Pride
Woods
Details
SnowBlower I.D.
Quick Tach Hitch Info
Search
Home
Plow Kit Details
Tech Articles
Our K9 Friends
About Us
Bruce Aungst 5/21/25 Bruce Aungst 5/21/25

This isn’t the gas it used to be, Part 2, Blending Additives

Read More
Bruce Aungst 5/21/25 Bruce Aungst 5/21/25

This isn’t the gasoline it used to be Part 1

Read More
Bruce Aungst 4/4/25 Bruce Aungst 4/4/25
Preview

First Oil change. Don’t rush it.

Read More
Bruce Aungst 4/3/25 Bruce Aungst 4/3/25

Lessons learned for small equip Gas and Diesel fuel

Read More
Bruce Aungst 4/3/25 Bruce Aungst 4/3/25

Fuel Containers, Pumps and more

Read More
Bruce Aungst 4/3/25 Bruce Aungst 4/3/25

3 Season Fuel Issues, Part 2

Read More
Bruce Aungst 4/3/25 Bruce Aungst 4/3/25

3 Season Fuel Issues, Part 1

Read More
Bruce Aungst 3/31/25 Bruce Aungst 3/31/25

Mowers for Scuts and cuts, an introduction

Read More
Bruce Aungst 3/31/25 Bruce Aungst 3/31/25

SCUT or CUT, To Mow or not to mow.

Read More
Bruce Aungst 3/31/25 Bruce Aungst 3/31/25

Fire the lawn service and handle it yourself. Make sure before jumping

Read More
Freezes at 32F, But protects to -40F+ and we all should use it
Bruce Aungst 9/19/24 Bruce Aungst 9/19/24

Freezes at 32F, But protects to -40F+ and we all should use it

Read More
New Tractor Owners, I hope will read this….
New Owner's Bruce Aungst 9/16/24 New Owner's Bruce Aungst 9/16/24

New Tractor Owners, I hope will read this….

Read More
Turn the key and click….Now What?
Maintenance, Snow Removal, Mowing Bruce Aungst 9/15/24 Maintenance, Snow Removal, Mowing Bruce Aungst 9/15/24

Turn the key and click….Now What?

Read More
Charger verses Tender, Why it matters.
Maintenance Bruce Aungst 9/15/24 Maintenance Bruce Aungst 9/15/24

Charger verses Tender, Why it matters.

Read More
I invested the time to research and write it. It’s your turn to read and learn from it.
Bruce Aungst 9/13/24 Bruce Aungst 9/13/24

I invested the time to research and write it. It’s your turn to read and learn from it.

It all begins with an idea.

Read More
Getting Started and I hope you join me
Bruce Aungst 9/13/24 Bruce Aungst 9/13/24

Getting Started and I hope you join me

Read More
The Journey Begins. Let’s take it together.
Bruce Aungst 5/28/19 Bruce Aungst 5/28/19

The Journey Begins. Let’s take it together.

It all begins with an idea.

Read More
Buying a new tractor, should I also buy a mower?
Bruce Aungst 5/28/19 Bruce Aungst 5/28/19

Buying a new tractor, should I also buy a mower?

It all begins with an idea.

Read More
The benefits of a good Diesel fuel program
Bruce Aungst 5/28/19 Bruce Aungst 5/28/19

The benefits of a good Diesel fuel program

It all begins with an idea.

Read More
3ph Blowers, avoid these mistakes
Bruce Aungst 5/28/19 Bruce Aungst 5/28/19

3ph Blowers, avoid these mistakes

It all begins with an idea.

Read More
Older Posts
BACK TO TOP

Stay in the loop.

We keep you up to date with the solutions you need, and probably didn’t know even existed.

Thank you!

Saint Joseph, Michigan 49085 | (269) 428-9932 | sulleybearsolutions@Gmail.com.

The phone is our general business number for our corporate offices and is answered in the business owners personal name since its used for more than one company contact number. Please leave a message if we are on another call or its after business hours.

Made with Squarespace

// Select the parent container that holds the items to be sorted. const parent = document.querySelector('.list-grid'); // Convert the HTMLCollection of children into an array for easier manipulation. const children = Array.from(parent.children); // Sort the children array based on the text content of the .grid-title element. const sortedChildren = children.sort((a, b) => { // Extract the title text from the .grid-title element, trim whitespace, or use an empty string if null. const titleA = a.querySelector('.grid-title')?.textContent?.trim() || ''; const titleB = b.querySelector('.grid-title')?.textContent?.trim() || ''; // Compare the titles alphabetically. return titleA.localeCompare(titleB); }); // Append each sorted child back to the parent to update the DOM order. for (const child of sortedChildren) { parent.appendChild(child); }