 
var fileName = location.pathname;
//document.write(fileName);

var folderName ="romance";

var pageLinks = new Array(
	"/"+folderName+"/lovenotes_sea.htm"	,		
	"/"+folderName+"/atoz_sea.htm",							
	"/"+folderName+"/body_sea.htm",
	"/"+folderName+"/whatsexis_sea.htm",
	"/"+folderName+"/bestway_sea.htm",			
	"/"+folderName+"/romanticdinner_sea.htm",
	"/"+folderName+"/loveyou_sea.htm",
	"/"+folderName+"/iloveyou_sea.htm",
	"/"+folderName+"/chocolate_sea.htm",
	"/"+folderName+"/makelove_sea.htm",
	"/"+folderName+"/loveboosters_sea.htm",
	"/"+folderName+"/giftideas_sea.htm",					
"");

var pageTitles = new Array(
	"Love Notes",                             
	"A to Z Passion Play",                                
	"Sexiest Body Parts",           
	"Know what sex is",   
	"Best Way To Say I Love You",                
	"Romantic Dinner", 
	"Say 'I Love You' Without Words",
	"101 Reasons Why I Love You",
	"The Aphrodisiac Called CHOCOLATE",
	"Make Love Without Doing It",
	"Love Boosters",
	"Gift Ideas for Him",
	         
"");

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="lovesex_sea.htm"><img src="images/lovesex.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>'+
	'');



