$translates = array( 'rus' => array( 'main' => 'ГЛАВНАЯ', 'ceilings' => 'НАТЯЖНЫЕ ПОТОЛКИ', 'services' => 'ВОПРОСЫ', 'gallery' => 'ГАЛЕРЕЯ', 'contacts' => 'КОНТАКТЫ', ), 'est' => array( 'main' => 'AVALEHT', 'ceilings' => 'PINGLAED', 'services' => 'KÜSIMUSED', 'gallery' => 'PILDID', 'contacts' => 'KONTAKTID', ) ); session_start(); if( !isset( $_SESSION["lan"] )){ $_SESSION["lan"]="rus"; } if( in_array( $_GET["lang"], array("rus","est") ) ){ $_SESSION["lan"]=$_GET["lang"]; } $lng = $_SESSION["lan"]; if(!$_GET["p"] OR $_GET["p"]=="1") $main="current"; else $main=""; if($_GET["p"]=="2" OR $_GET["p"]=="22" OR $_GET["p"]=="23" OR $_GET["p"]=="24") $ceilings="current"; else $ceilings=""; if($_GET["p"]=="3") $services="current"; else $services=""; if($_GET["p"]=="4") $gallery="current"; else $gallery=""; if($_GET["p"]=="5") $contacts="current"; else $contacts=""; ?>