- <?
- /**
- * The index.php.
- * The main entry for a browser request
- *
- * @package component
- * @filesource
- * @see index.php
- * @copyright (c) http://Finn-Rasmussen.com
- * @license http://Finn-Rasmussen.com/license/ myPHP License conditions
- * @author http://Finn-Rasmussen.com
- * @version 1.9
- * @since 21-oct-2005
- */
-
- /**
- * The required files
- */
- require_once($_SERVER['DOCUMENT_ROOT'].'/initialize.php');
-
- require_once(HTML_BASE_PAGE_PATH.'/CssBase.php'); // The Base CSS
- CssBase::display();
-
- require_once(HTML_COMPONENT_PAGE_PATH.'/Imagerotator.php');
- Imagerotator::display();
-
- require_once(HTML_COMPONENT_PAGE_PATH.'/Rejseplanen.php');
- Rejseplanen::display(CONTACT_ADDRESS);
-
- require_once(HTML_COMPONENT_PAGE_PATH.'/Domains.php');
- $domains = array(
- 'krusechristensen.dk',
- 'kruse-christensen.dk',
- );
- Domains::display($domains);
-
- ?>