function getURL(uri)
{
uri.dir = location.href.substring(0,location.href.lastIndexOf('\/'));
uri.dom = uri.dir;
if (uri.dom.substr(0,7) == 'http:\/\/') uri.dom = uri.dom.substr(7);
uri.path = '';
var pos = uri.dom.indexOf('\/');
if (pos > -1)
{
uri.path = uri.dom.substr(pos+1);
uri.dom = uri.dom.substr(0,pos);
}
return uri;
}
var uri = new Object();
getURL(uri);
var folder=uri.path;
var artncult="artncult";
var destin="destin";
var food="food";
var health="health";
var heritage="heritage";
var kid="kid";
var tourism="tourism";
var travel="travel";
var watch="watch";
var photos="photos";
if(destin!=folder)
document.write("

Destination");
if(tourism!=folder)
document.write("

Tourism");
if(heritage!=folder)
document.write("

Heritage");
if(artncult!=folder)
document.write("

Art & Culture");
if(food!=folder)
document.write("

Food");
if(watch!=folder)
document.write("

Web Watch");
if(photos!=folder)
document.write("

Photo Gallery");
if(kid!=folder)
document.write("

Kids Treat");
if(health!=folder)
document.write("

Health & Beauty");
document.write("

Home");
document.write("
");