var loc=stringA=location.href.toLowerCase()
var strhref=""
var strlocation=window.location.host
//var strlocation="http://"
var pos=stringA.indexOf(strlocation)
var len=strlocation.length
if (pos>=0){
	stringA=stringA.substring(pos+len,stringA.length);
	while (stringA.indexOf("/")>=0){
		pos=stringA.indexOf("/")
		strhref=strhref+"../"
		stringA=stringA.substring(pos+1,stringA.length);
	}
}

links = new Array();
links[0] = "web/en/drug/market.htm";
links[1] = "web/en/drug/strategy.htm";
links[2] = "web/en/drug/product.htm";
links[3] = "web/en/drug/service.htm";




text = new Array();
text[0] = "Market Overview";
text[1] = "Crimson's Strategy";
text[2] = "Product Pipeline";
text[3] = "Services & Expertise";



for (x=0; x<links.length; x++) 
  {
  if (loc.indexOf(links[x]) > -1) 
  {


 document.writeln("      <table width=\"137\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">");
document.writeln("        <tr> ");
document.writeln("          <td width=\"5\"><img src=\"..\/images\/menu_left1.jpg\" width=\"5\" height=\"22\"><\/td>");
document.writeln("          <td width=\"127\" background=\"..\/images\/menu_leftbg.jpg\" align=\"center\">");
  document.writeln('<span class=smenu2>'+ text[x]+ '</span>' );
document.writeln("  <\/td>");
document.writeln("          <td width=\"5\"><img src=\"..\/images\/menu_left2.jpg\" width=\"5\" height=\"22\"><\/td>");
document.writeln("        <\/tr>");
document.writeln("      <\/table>")
document.writeln("      <br>") 

  } 
  else 
  {


  document.writeln("      <table width=\"137\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\">");
document.writeln("        <tr> ");
document.writeln("          <td width=\"5\"><img src=\"..\/images\/menu_left1.jpg\" width=\"5\" height=\"22\"><\/td>");
document.writeln("          <td width=\"127\" background=\"..\/images\/menu_leftbg.jpg\" align=\"center\">");
  document.writeln('<a href="'+ strhref + links[x] + '"  class=smenu>'  + text[x] + '</a>');
document.writeln("    <\/td>");
document.writeln("          <td width=\"5\"><img src=\"..\/images\/menu_left2.jpg\" width=\"5\" height=\"22\"><\/td>");
document.writeln("        <\/tr>");
document.writeln("      <\/table>")
document.writeln("      <br>")
  }
  }


