diff --git a/Examples/Simple/clusterclient.cpp b/Examples/Simple/clusterclient.cpp
index e29fd9d..efa5b20 100644
--- a/Examples/Simple/clusterclient.cpp
+++ b/Examples/Simple/clusterclient.cpp
@@ -43,6 +43,8 @@
 
 // Scene file handler for loading geometry files
 #include <OSGSceneFileHandler.h>
+
+#include <OSGHDRStage.h>
 #else
 // GLUT is used for window handling
 #include <OpenSG/OSGGLUT.h>
@@ -64,6 +66,7 @@
 
 // Scene file handler for loading geometry files
 #include <OpenSG/OSGSceneFileHandler.h>
+#include <OpenSG/OSGHDRStage.h>
 #endif
 
 // The SimpleSceneManager to manage simple applications
@@ -90,7 +93,11 @@ int main(int argc, char **argv)
         // the connection between this client and the servers
         OSG::MultiDisplayWindowRefPtr mwin  = OSG::MultiDisplayWindow::create();
         OSG::NodeRefPtr               scene;
-    
+
+		OSG::HDRStageRecPtr pHDR = OSG::HDRStage::create();
+		pHDR->setEffectAmount(0.0);
+		OSG::NodeRecPtr root = OSG::makeNodeFor(pHDR);
+
         // evaluate params
         for(int a=1 ; a<argc ; ++a)
         {
@@ -151,6 +158,8 @@ int main(int argc, char **argv)
         // create default scene
         if(scene == NULL)
         scene = OSG::makeTorus(.5, 2, 16, 16);
+
+		root->addChild(scene);
     
         OSG::commitChanges();
     
@@ -159,7 +168,7 @@ int main(int argc, char **argv)
     
         // tell the manager what to manage
         mgr->setWindow(mwin );
-        mgr->setRoot  (scene);
+        mgr->setRoot  (root);
     
         // show the whole scene
         mgr->showAll();
