--- /dev/null
+<?php
+require_once '../setup.phtml';
+
+// application configuration
+$conf = new Config;
+$rotatingImagesRoot =& $conf->parseConfig(
+ BASE . 'Toolkit/RotatingImages/config.ini',
+ 'IniFile'
+);
+
+// get reference to [conf] section of config file
+$rotatingImagesName
+ = $rotatingImagesRoot->getItem('section', 'conf')
+ ->getItem('directive', 'applicationName')
+ ->getContent();
+
+$ri = new Toolkit_RotatingImages();
+$nav = $ri->createNav();
+$rotatingImages = $ri->toHtml(
+ Toolkit_Database::getInstance(),
+ $rotatingImagesRoot
+);
+
+GLM_TOOLBOX::top($rotatingImagesName, '');
+echo $nav;
+echo $rotatingImages;
+
+GLM_TOOLBOX::footer();
+?>