// Counties
var CountyList = "Boone,Cook,DeKalb,DuPage,Lake,Will,Kane,McHenry,Kendall,Other,Kankakee,Grundy";
var State = "IL";

ref = location.href;
ref = ref.toLowerCase();

function relo() {
    if (ref.indexOf('search') > -1) {
        document.getElementById('relo').style.visibility = 'visible';
        document.getElementById('relo').style.display = 'block';
    }
}

function change_title() {
    if (ref.indexOf('7346037') > -1) {
        $('.pagetitle').html('Commercial Properties');
    }
}

//doc ready
$(function() {

    relo();
    change_title();

});