Our Dams & Studs

View our breeding pairs.

Our breeding females retire after 4-5 litters.

And are available for a discounted price after they are spayed.

View Our Males

This one is Chip!

View Our Females

This one is Tiffany!

Newest Puppies

Your Dynamic Snippet will be displayed here... This message is displayed because you did not provided both a filter and a template to use.
// Wait for the document to be fully loaded // Initialize a Mutation Observer const observer = new MutationObserver(function(mutations) { mutations.forEach(function(mutation) { // Check if the element exists and its text is "Not Available For Sale" const spanElement = document.querySelector('span[data-oe-field="prevent_zero_price_sale_text"]'); if (spanElement && spanElement.textContent === "Not Available For Sale") { // Change the text to "This Puppy Found a Home" spanElement.textContent = "This Puppy Found a Home"; } }); }); // Configuration of the observer const config = { attributes: true, childList: true, characterData: true, subtree: true }; // Pass in the target node (document.body), as well as the observer options observer.observe(document.body, config);