Размер файла: 1.02Kb
- var pos=0;
- var text="index";
- var c,h,i,j,p;
- var ref="";
-
- with(document){
-
-
- pos=URL.lastIndexOf("contact.html");
-
-
- if(pos==-1){
- pos=URL.lastIndexOf("help.html");
-
-
- if(pos==-1){
- pos=URL.lastIndexOf("/j2me");
-
- if(pos==-1){
- pos=URL.lastIndexOf("/pc");
-
-
- if(pos==-1){
- }else{
- text=URL.substring(pos,pos+3);
- }
-
-
-
- }else{
- text=URL.substring(pos,pos+5);
- }
-
-
- }else{
- text=URL.substring(pos,pos+4);
- }
-
- }else{
- text=URL.substring(pos,pos+7);
- }
-
-
-
-
- if(text=="contact"){
- c="class=act";
- }else
- c="";
-
- if(text=="help"){
- h="class=act";
- }else
- h="";
-
- if(text=="/j2me"){
- j="class=act";
- ref="../";
- }else
- j="";
-
- if(text=="/pc"){
- p="class=act";
- ref="../";
- }else{
- p="";
- }
-
- if(text=="index"){
- i="class=act";
- }else{
- i="";
- }
-
-
- write("<ul class=site-nav><li><a href=/ "+i+">Главная</a></li><li><a href="+ref+"j2me/ "+j+">Телефон</a></li><li><a href="+ref+"pc/ "+p+">Компьютер</a></li><li><a href="+ref+"contact.html "+c+">Контакты</a></li><li class=last><a href="+ref+"help.html "+h+">Помощь</a></li></ul>");
-
- }