$(document).ready(function() {
    // If Products, Versatility, or Technology pages are displayed, show their menu as "on"
    if (location.href.indexOf("/Products") > -1)
        productsOn();
    else if (location.href.indexOf("/Versatility") > -1)
        versatilityOn();
    else if (location.href.indexOf("/Technology") > -1)
        technologyOn();
});