﻿if (initCaller != null)
    initCaller.push("initMarketListTree()");

function initMarketListTree() {
    $("#cityTree").treeview();
    $("a.marketLink").click(function() {
        if (GoogleMapInstance) {
            GoogleMapInstance.SetCenterForMarket(this.id.replace('ID', ''), 15);
            return false;
        }
   });
   $("#mapmenu ul ul li a.maptoggleNext").click(function() {
       if (GoogleMapInstance) {
           GoogleMapInstance.SetCenterForCounty(this.id.replace('ID', ''), 9);
       }
   });
  }

