function SideNav(LinkID) {
	if (LinkID==0) location.href='CompProfile.htm?CC='+CountryCode+'&LC='+LangCode
	if (LinkID==1) location.href='RCoverage.htm?CC='+CountryCode+'&LC='+LangCode
	if (LinkID==2) location.href='AskClients.htm?CC='+CountryCode+'&LC='+LangCode
	if (LinkID==3) location.href='WhatWeDo.htm?CC='+CountryCode+'&LC='+LangCode
	if (LinkID==4) location.href='WhyJobsDB.htm?CC='+CountryCode+'&LC='+LangCode
}
var SideNavContent=''
SideNavContent='<table border=0 cellspacing=0 cellpadding=0 width=120 height=100%>'
+'<tr>'
+'<td valign=top class=subtitle>'
+'<table width=100% border=0 cellspacing=0 cellpadding=1>'
+'<tr>'
+'<td nowrap height=23>&nbsp; </td>'
+'</tr>'

var txtLink=new Array
txtLink[0]='Corporate Profile'
txtLink[1]='Regional Coverage'
txtLink[2]='What They Say?'
txtLink[3]='What We Do?'
txtLink[4]='Why JobsDB?'
for (var i=0;i<5;i++) {
	SideNavContent=SideNavContent+'<tr><td nowrap class=toppanel>'
	+'<a href="javascript:SideNav('+i+')">'
	+'<img src=' + Parent + 'CommonImages/AboutUs/arrow_sm.gif hspace=2 border=0>'
	+'<font color=white>'+txtLink[i]+'</font></a></td></tr>'
}

SideNavContent=SideNavContent+'<tr><td height=100%>&nbsp;</td></tr></table></td></tr></table>'

document.write (SideNavContent)

