
//To get File name
var  LSA  =  location.href.split("ca")[1].split("/");
var  pageName  =  LSA[LSA.length-1];
//alert(pageName);



/* index.html */
if (pageName == 'index.html' || pageName == '') {
	document.write('<ul><li class="actIndex"><a href="index.html">Home</a>&nbsp;&nbsp;|&nbsp;&nbsp;</li>');
} else {
	document.write('<ul><li><a href="index.html">Home</a>&nbsp;&nbsp;|&nbsp;&nbsp;</li>');
}

/* calendar.html */
if (pageName == 'calendar.html') {
	document.write('<li class="actCalendar"><a href="calendar.html">Calendar</a>&nbsp;&nbsp;|&nbsp;&nbsp;</li>');
} else {
	document.write('<li><a href="calendar.html">Calendar</a>&nbsp;&nbsp;|&nbsp;&nbsp;</li>');
}


/* entertainment.html */
if (pageName == 'entertainment.html') {
	document.write('<li class="actEntertainmentPage"><a href="entertainment.html">Entertainment</a>&nbsp;&nbsp;|&nbsp;&nbsp;</li>');
} else {
	document.write('<li><a href="entertainment.html">Entertainment</a>&nbsp;&nbsp;|&nbsp;&nbsp;</li>');
}


/* pavilions.html */
if (pageName == 'pavilions.html') {
	document.write('<li class="actPavilionsPage"><a href="pavilions.html">Pavilions</a>&nbsp;&nbsp;|&nbsp;&nbsp;</li>');
} else {
	document.write('<li><a href="pavilions.html">Pavilions</a>&nbsp;&nbsp;|&nbsp;&nbsp;</li>');
}



/* gallery.html */
if (pageName == 'gallery.html') {
	document.write('<li class="actGallery"><a href="gallery.html">Photo Gallery</a>&nbsp;&nbsp;|&nbsp;&nbsp;</li>');
} else {
	document.write('<li><a href="gallery.html">Photo Gallery</a>&nbsp;&nbsp;|&nbsp;&nbsp;</li>');
}

/* livecam.html */
if (pageName == 'livecam.html') {
	document.write('<li class="actLivecam"><a href="livecam.html">Live Cam</a>&nbsp;&nbsp;|&nbsp;&nbsp;</li>');
} else {
	document.write('<li><a href="livecam.html">Live Cam</a>&nbsp;&nbsp;|&nbsp;&nbsp;</li>');
}


/* directionmap.html */
if (pageName == 'directionmap.html') {
	document.write('<li class="actDirectionMap"><a href="directionmap.html">Maps</a></li></ul>');
} else {
	document.write('<li><a href="directionmap.html">Maps</a></li></ul>');
}



