document.write('<ul id="tabnav">');


if (location.pathname.match("index.html"))
{
	document.write('<li><a class="active" href="http://www.somervillescout.com/index.html">Home</a></li>');
}
else
{
	document.write('<li><a class="" href="http://www.somervillescout.com/index.html">Home</a></li>');
}

if (location.pathname.match("blog"))
{
	document.write('<li><a class="active" href="http://www.somervillescout.com/blog">Blog</a></li>');
}
else
{
	document.write('<li><a class="" href="http://www.somervillescout.com/blog">Blog</a></li>');
}


if (location.pathname.match("calendar.html"))
{
	document.write('<li><a class="active" href="http://www.somervillescout.com/calendar.html">Calendar</a></li>');
}
else
{
	document.write('<li><a class="" href="http://www.somervillescout.com/calendar.html">Calendar</a></li>');
}

if (location.pathname.match("archive.html"))
{
	document.write('<li><a class="active" href="http://www.somervillescout.com/archive.html">Archive</a></li>');
}
else
{
	document.write('<li><a class="" href="http://www.somervillescout.com/archive.html">Archive</a></li>');
}

if (location.pathname.match("interns.html"))
{
	document.write('<li><a class="active" href="http://www.somervillescout.com/interns.html">Intern</a></li>');
}
else
{
	document.write('<li><a class="" href="http://www.somervillescout.com/interns.html">Intern</a></li>');
}


if (location.pathname.match("contact.html"))
{
	document.write('<li><a class="active" href="http://www.somervillescout.com/contact.html">Contact</a></li>');
}
else
{
	document.write('<li><a class="" href="http://www.somervillescout.com/contact.html">Contact</a></li>');
}

document.write('</ul>');

