<?php

// PageHome class
// Date: 2012-06-13

include_once('Page.php');

class PageHome extends Page
{

  function __construct($Language)
  {
	  parent::__construct('home',$Language);
  }
  
  protected function Generate() {
	//generation of the page
		

	parent::Generate($this->Content);
	
  }

}
?>
