 
var fileName = location.pathname;
//document.write(fileName);

var folderName ="romance";

var pageLinks = new Array(
	"/"+folderName+"/whatislove_sea.htm"	,		
	"/"+folderName+"/whatisromance_sea.htm",							
	"/"+folderName+"/types_sea.htm"	,
	"/"+folderName+"/stageslove_sea.htm",
	"/"+folderName+"/reason_sea.htm",			
	"/"+folderName+"/romantic_sea.htm",
	"/"+folderName+"/body_language_sea.htm",
	"/"+folderName+"/flowerpower_sea.htm",
	"/"+folderName+"/love_first_sight_sea.htm",
	"/"+folderName+"/astrology_sea.htm",							
"");

var pageTitles = new Array(
	"What is Love? ",
	"What is Romance? ",                                
	"Types of Love",           
	"Stages Of Love",   
	"Reasons People Fall In Love",                
	"What makes a person romantic?", 
	"Body Language In Love",
	"Flower Power",
	"Love At First Sight",
	"Starsign Love Compatibility",                    
"");

var linkStrings = "";
for (i=0; i<pageLinks.length-1; i++) {
	if (fileName == pageLinks[i]) {
		linkStrings += '<tr bgcolor="#F38DBD" align="left" valign="top"><td height="2"><span class="redbold"><img src="images/tick.gif" width="17" height="9" border="0">'+pageTitles[i]+'</font></span></td></tr>';
	} else {
		linkStrings += '<tr bgcolor="#F7AACE" align="left" valign="top"><td class="parentclass" height="2"><span class="parentclass"><a href="'+pageLinks[i]+'" class="parentclass">'+pageTitles[i]+'</a></font></span></td></tr>';
	}
}

document.write(''+
	'<table width="135" border="0" cellspacing="0" cellpadding="0" align="center">'+
	'	<tr align="left" valign="top"><td><a href="aboutlove_sea.htm"><img src="images/aboutlove.gif" width="135" height="30" border="0"></a></td></tr>'+
	'  <tr align="left" valign="top"> '+
	'    <td height="53"> '+
	'      <table width="135" border="0" cellspacing="0" cellpadding="0">'+
	'        <tr bgcolor="#63284A" align="left" valign="top"> '+         
	'          <td height="100"> '+
	'            <table width="135" border="0" cellspacing="1" cellpadding="4">'+
	'					'+linkStrings+
	'            </table>'+
	'          </td>'+
	'        </tr>'+
	'      </table>'+
	'    </td>'+
	'  </tr>'+
	'</table>'+
	'</body>'+
	'</html>'+
	'');



