
function setTabArray(URL) {
	this.url = URL;
}

// Create an array of Netscape URLs - one Friendly URL for each tab
var nnTabURL = new Array();
nnTabURL[0] = new setTabArray("/productsservices/overview");
nnTabURL[1] = new setTabArray("/financialplanning/overview");
nnTabURL[2] = new setTabArray("/marketsresearch/overview");
nnTabURL[3] = new setTabArray("/customerservice/overview");
nnTabURL[4] = new setTabArray("/aboutprudential/overview");

function Choice(arrayPosition){
	if ((is.ie||is.ns6up||is.gecko) && !(is.mac&&(is.aol5||is.ie4))) secArray[arrayPosition].isHidden?showSec(arrayPosition):hideSec(arrayPosition);
	else window.parent.location.href = nnTabURL[arrayPosition].url;
}


