var canvasColor = "666666";//666666//000066

var strPath = location.pathname;
var arrSplitPath = strPath.split("/");
var pageURL = arrSplitPath[2].toLowerCase();

navLink = new Array();
navLink[0] = {label:"Home",url:"default.asp",desc:"&nbsp;"}

navLink[1] = {
label:"About the GLP",
url:"overview.asp",
desc:"General description of the program and types of opportunites<img src=\"/web_resources/dbimages/spacer.gif\" alt=\"\" width=198 height=1 border=0>",
text:"The Graduate Leadership Program is designed to enable us to hire the future leaders of D&B and strengthens our Winning Culture.  Our Winning Culture is a cornerstone of the Blueprint for Growth and drives everything we do."}

navLink[2] = {
label:"Recruiting Calendar",
url:"calendar.asp",
desc:"Schedule of On-Campus Presentations and Contact Information<img src=\"/web_resources/dbimages/spacer.gif\" alt=\"\" width=50 height=1 border=0>",
text:"See when and where we're coming to campus.<br><br>"}

navLink[3] = {
label:"MBAs at D&B",
url:"mba_glt.asp",
desc:"Hear what MBAs have to say about working at D&B<img src=\"/web_resources/dbimages/spacer.gif\" alt=\"\" width=20 height=1 border=0>",
text:"MBAs play critical and diverse roles at D&B.  Learn more about a few MBAs, what they do, and why they chose D&B.<br><br>"}

navLink[4] = {label:"About D&B",
url:"http://www.dnb.com/US/about/index.html",
desc:"&nbsp;<img src=\"/web_resources/dbimages/spacer.gif\" alt=\"\" width=125 height=1 border=0>"}

//navLink[5] = {label:"About the GLP",
//url:"about_glp.asp",desc:"&nbsp;<img src=\"/web_resources/dbimages/spacer.gif\" alt=\"\" width=225 height=1 border=0>"}

/*navLink[6] = {label:"Annual Report",url:"javascript:eval();\" onclick=\"window.open(\'http://media.corporate-ir.net/media_files/NYS/DNB/reports/2003_AR_10K.pdf\');",desc:"(Adobe PDF 1.66MB)<img src=\"/web_resources/dbimages/spacer.gif\" alt=\"\" width=90 height=1 border=0>"}*/

document.write('<table width=100% border=0 cellspacing=0 cellpadding=0><tr><td bgcolor=999999 align=right><table border=0 cellspacing=0 cellpadding=0><tr><td><img src="/web_resources/dbimages/spacer.gif" alt="" width="1" height="17" border="0"></td>');
for (i=0;i<navLink.length;i++){
	document.write('<td><a href="'+navLink[i].url+'" class="navLink"');
	if ((pageURL == navLink[i].url)&&(pageURL != "default.asp")){
		document.write(' style="background-color:#'+canvasColor+';color:#ffffff;cursor:default;"');
	}
	if ((pageURL == "default.asp")||(pageURL == "")){
		document.write(' " onmouseout="showDesc(0)" ');
	}
	document.write('>'+navLink[i].label+'</a></td>');
}
document.write('</td></tr></table></tr>');
/*
if ((pageURL == "default.asp")||(pageURL == "")){}
else{
	document.write('<tr><td align=right bgcolor='+canvasColor+'><table border=0 cellspacing=0 cellpadding=0><tr><td><div id="description" name="description" style="color:#dddddd;">&nbsp;</div></td><td><img src="/web_resources/dbimages/spacer.gif" alt="" width="10" height="1" border="0"></td></tr></table></td></tr>');
}
*/
document.write('</table>');

function showDesc(num){
	document.all['description'].innerHTML = navLink[num].desc;
}