
var fileName = location.pathname;
//document.write(fileName);

var folderName = "beauty";

var pageLinks = new Array(
	"/"+folderName+"/5steps_sea.htm",
    "/"+folderName+"/lowcostbeauty_sea.htm",
	"/"+folderName+"/greathair_sea.htm",
	"/"+folderName+"/hair_sea.htm",
	"/"+folderName+"/makeup_sea.htm",
	"/"+folderName+"/freckles_sea.htm",
	"/"+folderName+"/eyelashes1_sea.htm",
	"/"+folderName+"/foundation_sea.htm",
	"/"+folderName+"/lip_lipstick_sea.htm",
	"/"+folderName+"/skin_sea.htm",
	"/"+folderName+"/nails_sea.htm",
"");
var pageTitles = new Array(
	"5 Steps To Look Young",
	"Low Cost Beauty Secrets",
	"10 Ways to Get Great Hair",
	"Hair",
	"Makeup",
	"How to Camouflage Freckles",
	"Eyelashes",
	"Foundation",
	"Lip 'n' Lipstick",
	"Skin",
	"Nails",
"");

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">Winter & You</td></tr>'+
	'			'+linkStrings+
	'		</table>'+
	'	</td></tr>'+
	'</table>'+
'');

