/**************************************************************************************
*Contents: Entry point function.
*All rights reserved.
**************************************************************************************/



lr = null;

function main(map) {
   var areaCenter = new GLatLng(41.4994954,-81.6954088);
   
   map.addControl(new GLargeMapControl());
   map.addControl(new GMapTypeControl());
   map.setCenter(areaCenter, 15, G_NORMAL_MAP);


   lr = new Locator("lr","Cleveland","strip club","club","usa/strip_clubs/cleveland.xml","ohio_club",map,areaCenter, 7,null, ["col1"], 17, false);
  
   lr.select();
}


//Navigation bar functions.
function showAll() {
   lr.show();
}

function hideAll() {
   lr.hide();
}

function showAreaWeb() {
   lr.showWithWeb();
}

function hideAreaWeb() {
   lr.hideWithWeb();
}





