/* The link details */ 
var links_text = new Array ("Movie Review", "Mumait Khan Pix 1", "Mumait Khan Pix 2", "Prabhu's Review", "Stills", "Wallpapers 1", "Wallpapers 2"); 
var links_url = new Array ("reviews/operationduryodhana.htm", "gallery/exclusive/mumaitkhan5/", "gallery/exclusive/mumaitkhan9/", "operationduryodhana1.htm", "gallery/movies/operationduryodhana/", "wallpapers/od/", "wallpapers/od1/"); 

var loc=String(this.location);
var locintermediate="";
loc=loc.split("/");
for(var i=3; i<(loc.length)-1; i++)
{
locintermediate=locintermediate+loc[i]+"/"
}
loc=locintermediate+loc[(loc.length)-1];

/* Menu generating function */ 
function dyn_menu_gen() 
{ 
	document.write('<center><table width="160" cellspacing="5" cellpadding="5" style="border: solid 1px black;">');
for(var i=0; i<links_text.length; i++) 
{ 
	if (loc==links_url[i])
  document.write('<tr><td class="currentlink">' + links_text[i] + '</td></tr>');
  else
  document.write('<tr><td class="otherlink" onmouseover="this.className=\'currentlink\'" onmouseout="this.className=\'otherlink\'"><a href="' + links_url[i] + '">' + links_text[i] + '</a></td></tr>');	 
 } 
 document.write('</table></center><br/><br/>');
 } 

/* Generate the menu */ 
dyn_menu_gen();