URL = window.location.href; indexhtml= (URL.indexOf('/index.') > -1);productshtml= (URL.indexOf('/products.') > -1);overviewhtml= (URL.indexOf('/overview-technical-information.') > -1);$(function(){        if (indexhtml) {         var x=document.getElementById("home");         x.className = 'live_act';        var y=document.getElementById("homes");         y.className = 'live_act_sub';        }                 else if (productshtml){         var x=document.getElementById("prod");         x.className = 'live_act';         var y=document.getElementById("prods");         y.className = 'live_act_sub';        }            else if (overviewhtml){         var x=document.getElementById("overview");         x.className = 'live_act';         var y=document.getElementById("overviews");         y.className = 'live_act_sub';        }    });
