<?php
require ('page.inc');
class servicesPage extends Page
{
    public $row2buttons = array( 'Free code' => 'freecode.php',
        'E-Book' => 'ebook.php',
        'New paper' => 'newpaper.php',
        'Problem Solving' => 'solving.php'
    );
    function Display()
    {
        echo "<html>\n<head>\n";
        $this -> DisplayTitle();
        $this -> DisplayKeywords();
        $this -> DisplayStyles();
        echo "</head>\n<body>\n";
        $this -> DisplayHeader();
        $this -> DisplayMenu($this->buttons);
        $this -> DisplayMenu($this->row2buttons);
        echo $this->content;
        $this -> DisplayFooter();
        echo "</body>\n</html>\n";
    }
}
$services = new servicesPage();
$content ='<p>At Olomrayane publishing, we offer a number of services.
             Perhaps the productivity of your studies would
             improve if we provide new books for you.
             Maybe all your education needs is a fresh materials,
             or a new batch of applied books.</p>';
$services -> SetContent($content);
$services -> Display();
?>