<script type="text/javascript">
$(function () {
$('header .top .profile ul li a').each(function () {
var location = window.location.href
var link = this.href
var result = location.match(link);
if(result != null) {
$(this).addClass('active');
}
});
});
</script>
header .top ul.menu li a.active{color:#ffd111}
::-webkit-scrollbar-track {
background: 0 0;
}
::-webkit-scrollbar-thumb {
background: #fff;
border-radius: 5px;
}
::-webkit-resizer {
width: 5px;
}
::-webkit-scrollbar {
width: 5px;
}
<?PHP
require_once('title.php');
global $title_arr;
echo '
<title>'.$title_arr[$_SERVER["SCRIPT_NAME"]].'</title>
'?>
<?PHP
$title_arr = array(
'/index.php'=>'Главная',
'/about.php'=>'Статьи',
'/gbook.php'=>'Гостевая книга'
);
?>