
var fileName = location.pathname;
//document.write(fileName);

var folderName = "beauty";

var pageLinks = new Array(
	"/"+folderName+"/aromatherapy1_sea.htm", 
	"/"+folderName+"/essentialoils_sea.htm", 
	"/"+folderName+"/carrieroils_sea.htm", 
	"/"+folderName+"/application_sea.htm",

"");
var pageTitles = new Array(
	"What is Aromatherapy?", 
	"Essential Oils",
	"Carrier Oils", 
	"Modes of Application",
	
"");

var linkStrings = "";
for (i=0; i<pageLinks.length-1; i++) {
	if (fileName == pageLinks[i]) {
		linkStrings += '<tr bgcolor="#642B4F" align="left" valign="top"><td class="yellowlight" height="2"><span class="pinklight"><font color="#FFFFFF" class="yellowlight"><img src="images/tick.gif" width="13" height="9" border="0">'+pageTitles[i]+'</font></span></td></tr>';
	} else {
		linkStrings += '<tr bgcolor="#642B4F" align="left" valign="top"><td class="yellowlight" height="2"><span class="pinklight"><font color="#FFFFFF" class="yellowlight"><a href="'+pageLinks[i]+'" class="yellowlight">'+pageTitles[i]+'</a></font></span></td></tr>';
	}
}

document.write(''+
	'<table width="135" border="0" cellspacing="0" cellpadding="0">'+
	'	<tr bgcolor="#FFCCCC" align="left" valign="top"><td>'+
	'		<table width="135" border="0" cellspacing="1" cellpadding="4">'+
	'			<tr bgcolor="#FFCCCC" align="center" valign="top"><td class="heading">Aromatherapy</td></tr>'+
	'			'+linkStrings+
	'		</table>'+
	'	</td></tr>'+
	'</table>'+
'');

