header('Content-Type: text/html; charset=utf-8');
mb_internal_encoding('utf-8');
date_default_timezone_set('Europe/Prague');
error_reporting(E_ALL | E_STRICT);
$p=(isset($_GET['p']))?trim($_GET['p']):'';
$lang='cs';
$imageSizeByRatio=array();
$imageSizeByRatio['32']['l']=array('w'=>840, 'h'=>560);
$imageSizeByRatio['21']['l']=array('w'=>840, 'h'=>420);
$imageSizeByRatio['54']['l']=array('w'=>800, 'h'=>640);
$imageSizeByRatio['45']['l']=array('w'=>520, 'h'=>650);
//$sheetWidth['l']=900+80;
require('images-'.$lang.'.php');
if (isset($images[$p.'.html'])) {
// detail fotky
$imageIndex=$p.'.html';
$size='l';
$image=$images[$imageIndex];
require('detail.php');
}
else {
switch($p) {
case '': {
// titulní stránka - náhledy
require('thumbs.php');
break;
}
default: {
// 404
}
}
}