var completeURL=document.URL;
var position=completeURL.lastIndexOf('/') + 1;
var pagename = completeURL.substring(position,(completeURL.length));

if (pagename=='index.html' || pagename=='') 
{document.write('<a href="index.html" ><b>Home</b></a> ~ ');}
else
{document.write('<a href="index.html" >Home</a> ~ ');}

if (pagename=='photogallery1.php') 
{document.write('<a href="photogallery1.php" ><b>Photo Gallery</b></a> ~ ');}
else
{document.write('<a href="photogallery1.php" >Photo Gallery</a> ~ ');}

if (pagename=='location.html') 
{document.write('<a href="location.html" ><b>Location</b></a> ~ ');}
else
{document.write('<a href="location.html" >Location</a> ~ ');}

if (pagename=='contactus.html') 
{document.write('<a href="contactus.html" ><b>Contact Us</b></a>');}
else
{document.write('<a href="contactus.html" >Contact Us</a>');}


