// JavaScript Document

if ((document.location.href.indexOf('index.html') >= 0) || (document.location.href.indexOf('.html') == -1))
	{
		document.getElementById("welcome").className = "current"
	}
				 
if (document.location.href.indexOf('about.html') >= 0)
	{
		document.getElementById('about').className = "current"
	}
				 
if (document.location.href.indexOf('gallery.html')  >= 0)
	{
		document.getElementById('gallery').className = "current"
	}
				 
if (document.location.href.indexOf('contact.html') >= 0)
	{
		document.getElementById('contact').className = "current"
	}
