function loadPicklists()
{
	var l = new Array("Small Business","",
		"Small Business at-a-glance","https://online.citibank.com/US/JRS/pands/detail.do?ID=CitiBizOverview",
		"Commercial Real Estate Grp","http://www.citibank.com/us/realestategroup/product/cmi.cgi",
		"Credit Card Merchant Services","/domain/redirect/sm_biz/cards/merc_ser.htm",
		"Small Business Credit Cards","https://online.citibank.com/US/JRS/pands/detail.do?ID=CitiBizOverview");
	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","https://www.privatebank.citibank.com",
		"Credit Card Merchant Svcs","/domain/redirect/corp/merc_ser.htm",
		"Diners Club ® Corporate","/domain/redirect/corp/diners.htm",
		"Global Executive Banking","http://www.citibank.com/us/geb/",
		"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;
	}
}


