function loadPicklists()
{
	var l = new Array("Small Business","",
		"Small Business at-a-glance","/domain/redirect/sm_biz/glance.htm",
		"CitiBusiness ® Global","/domain/redirect/sm_biz/international/cit_biz.htm",
		"CitiBusiness ® US","/domain/redirect/sm_biz/citibiz.htm",
		"Commercial Real Estate Grp","/domain/redirect/sm_biz/realest.htm",
		"Credit Card Merchant Services","/domain/redirect/sm_biz/cards/merc_ser.htm",
		"Small Business Credit Cards","/domain/redirect/sm_biz/cards/chooser.htm");
	var el = document.citilinks.selectBus;
	el.length = 0;
	for( var i = 0; i < l.length; i+=2 )
	{
		var o = new Option(l[i],l[i+1]);
		el.options[el.options.length] = o;
	}
	el.selectedIndex = 0;
	l = new Array("Corporate","",
		"Cash Management","/domain/redirect/corp/e_biz.htm",
		"CitiDirect Online Banking","/domain/redirect/corp/cdob.htm",
		"Global Transaction Services","/domain/redirect/corp/cgts.htm",
		"Citigroup Private Bank","/domain/redirect/corp/private.htm",
		"Credit Card Merchant Svcs","/domain/redirect/corp/merc_ser.htm",
		"Diners Club ® Corporate","/domain/redirect/corp/diners.htm",
		"Global Executive Banking","/domain/redirect/corp/exp_bank.htm",
		"Securities and Fund Services","http://www.transactionservices.citigroup.com/transactionservices/homepage/securitiesfunds.htm",
		"Trade Services and Finance","http://www.transactionservices.citigroup.com/transactionservices/homepage/trade/index.htm");
	el = document.citilinks.selectCorp;
	el.length = 0;
	for( var i = 0; i < l.length; i+=2 )
	{
		var o = new Option(l[i],l[i+1]);
		el.options[el.options.length] = o;
	}
	el.selectedIndex = 0;
	
	loadCountryPicklist(document.citilinks.selectCntry);
}

function goPicker(e){
	if (e.options[e.selectedIndex].value) {
		location.href = e.options[e.selectedIndex].value+location.search;
	}
}

