﻿function toggle2ndNav(link) {
    var nav = document.getElementById('SecondaryNav');
    if (nav.style.display == 'block') {
        nav.style.display = 'none';
        link.innerHTML = "More...";
    } else {
        nav.style.display = 'block';
        link.innerHTML = "Less...";
    }
}

function installSearchClick() {
    if (navigator.appVersion.indexOf('MSIE') > 0) {
        window.external.AddSearchProvider('http://www.allthetopbananas.com/opensearch1.1.xml');
        window.location.href = '/InstallSearchThanks.aspx';
    }
    else {
        window.location.href = '/InstallSearch.aspx';
    }
}
