
var fileName = location.pathname;
//document.write(fileName);

var folderName = "beauty";

var pageLinks = new Array(
	"/"+folderName+"/beautyback_sea.htm",
	"/"+folderName+"/backtips_sea.htm",
"");
var pageTitles = new Array(
	"Beautiful Back",
	"Back care tips",
"");

var linkStrings = "";
for (i=0; i<pageLinks.length-1; i++) {
	if (fileName == pageLinks[i]) {
		linkStrings += '<tr bgcolor="#642B4F" align="left" valign="top"><td height="2"><span class="pinklight"><font color="#FFFFFF"><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">Back Care</td></tr>'+
	'			'+linkStrings+
	'		</table>'+
	'	</td></tr>'+
	'</table>'+
'');
