// JavaScript Document That controls the quicklinks
// Create array to hold four URLs;
var dest = new Array(4);
dest[0] = window.location.href;
dest[1] = "product_detail.html";
dest[2] = "product_detail.html";
dest[3] = "product_detail.html";
dest[4] = "branch_network.html";
dest[5] = "branch_network.html";
dest[6] = "financial_statements.html";
dest[7] = "careers.html";
dest[8] = "download_forms.html";
dest[9] = "faq.html";
dest[10] = "contact_us.html";



function go(d) {

// Change location of current window one selected from menu
// d.menu.options.selectedIndex returns a number that corresponds
// to the choice they selected in the pop up menu on the form
// If a user selected the first choice, selectedIndex = 0 and the 

window.location.href = dest[d.destination.options.selectedIndex];      


}
