
var fileName = location.pathname;
//document.write(fileName);

var folderName = "beauty";

var pageLinks = new Array(
	"/"+folderName+"/hairstyle2005_sea.htm",
	"/"+folderName+"/summer_fashiontrends_sea.htm",
	"/"+folderName+"/kurtis_sea.htm",
	"/"+folderName+"/monochrmatic_sea.htm",
	"/"+folderName+"/gearblack_sea.htm",
	"/"+folderName+"/black_sea.htm",
	"/"+folderName+"/bluefever_sea.htm",
	"/"+folderName+"/flauntsandals_sea.htm",
	"/"+folderName+"/fashiontrends_sea.htm",
	"/"+folderName+"/whats_hot_sea.htm",
	"/"+folderName+"/fashionfloral_sea.htm",
	"/"+folderName+"/bridal_sea.htm",
	"");
var pageTitles = new Array(
	"Hairstyle Makeover for 2005",
	"Spring-Summer Fashion Trends",
	"Kurtis: Flavour of the Season",
	"Go Monochromatic",
	"Gear Up For Black",
	"Black is Sexy",
	"Blue Fever",
	"Flaunt Those Sandals",
	"Fashion Trends: Lower the Better",
	"What's Hot This Season?",
	"Fashion With Floral",
	"Bridal Trends",
	"");

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">Latest Fashion Happenings</td></tr>'+
	'			'+linkStrings+
	'		</table>'+
	'	</td></tr>'+
	'</table>'+
'');
