var CountyList = "Travis,Williamson,Hays,Bastrop,Burnet,Caldwell,Blanco,Milam,Llano,Comal";
var State = "TX";

function menu() {
    $('.level1 > li').hover(
         function() {
             $('ul.level2', this).fadeIn('fast');
         },
         function() {
             $('ul.level2', this).fadeOut('fast');
         }
     );
     $('.level2 > li').hover(
         function() {
             $('ul.level3', this).fadeIn('fast');
         },
         function() {
             $('ul.level3', this).fadeOut('fast');
         }
     );     
}

function company_info() {
    url = (window.location.href).toLowerCase();
    if (url.indexOf('companyinfo') > -1) {
        $('.company_info').show();
    }
}

//doc ready
$(document).ready(function() {
    menu();
    // company_info();
});