Learn with Suzanne
On-Demand Courses & Workshops

For the past 15 years, Suzanne has dedicated her career to teaching others how to connect to Spirit, your guides, and loved ones across the veil.

Not sure where to begin? Get a personalized recommendation in seconds.

Suzanne Giesemann

const images = [
https://newsite.suzannegiesemann.com/wp-content/uploads/2025/12/teaching-8-1200×800.jpg,
https://newsite.suzannegiesemann.com/wp-content/uploads/2025/12/Suzanne-online-2.jpg,
https://newsite.suzannegiesemann.com/wp-content/uploads/2025/12/2C9A1806-2-2-1200×800.jpg
];

let index = 0;
const slider = document.getElementById(heroSlider);

// Set first image
slider.src = images[0];

setInterval(() => {
slider.style.opacity = 0;

setTimeout(() => {
index = (index + 1) % images.length;
slider.src = images[index];
slider.style.opacity = 1;
}, 400);

}, 4000); // change every 4 seconds