// Configuration information about where your city is
var city_center = new google.maps.LatLng(45.42,-75.69);  // This is the center
var limit_sw=new google.maps.LatLng(45.53758,-75.246598); // The SW corner
var limit_ne=new google.maps.LatLng(44.962733,-76.353916); // The NE corner


// The Google table number
var default_zoom = 12;
var table_number = 323656;
var site_name = "Ottawa Biking Problems";
var base_url = "http://ottawabikingproblems.ca"
var plugin_url = base_url+"/wp-content/plugins/bikemaps/";
var images_base = base_url+"/uploads";

// This is the prefix URL where the edit page is
edit_url="http://ottawabikingproblems.ca/?page_id=1235";

// Now tell us the names of the wards that you have
var ward_names = [ "All" ,
        "1 Orléan",
        "2 Innes",
        "3 Barrhaven",
        "4 Kanata North",
        "5 West Carleton-March",
        "6 Stittsville-Kanata West",
        "7 Bay",
        "8 College",
        "9 Knoxdale-Merivale",
        "10 Gloucester-Southgate",
        "11 Beacon Hill-Cyrville",
        "12 Rideau-Vanier",
        "13 Rideau-Rockcliffe",
        "14 Somerset",
        "15 Kitchissippi",
        "16 River",
        "17 Capital",
        "18 Alta Vista",
        "19 Cumberland",
        "20 Osgoode",
        "21 Rideau-Goulbourn",
        "22 Gloucester-South Nepean",
        "23 Kanata South"];

ward_names[50]="Gatineau";
var num_wards=50;


var report_types = new Array(
      { title: "Problem",
        shortname: "problem",
        mask: 4095,
        acronym: "p"},
      { title: "Construction/Snow removal",
        shortname: "construction",
        mask: 9,
        acronym: "c"},
      { title: "Information",
        shortname: "information",
        mask: 7,
        acronym: "i"}
);


var masks = new Array();
var masksproblem=new Array(
	'Crossing of the 417',
	'Lane disappears',
	'Bikes not allowed',
	'Train underpass',
	'No rideable shoulder',
	'Bad surface',
	'No route for cyclists',
	'Path discontiguous',
	'Missing signage',
	'Should have bike lane',
	'Other',
	'Flooding');
masks.problem=masksproblem;

var masksconstruction=new Array(
	'Minor',
        'Difficult',
        'Completely closed',
	'No snow removal');
masks.construction=masksconstruction;

var masksinformation=new Array(
	'Proposed improvements',
	'Improvements from 2010',
	'Expected improvements 2011');
masks.information=masksinformation;

// You shouldn't have to change anything below this line to configure

var city_bounds = new google.maps.LatLngBounds();
city_bounds.extend(limit_sw);
city_bounds.extend(limit_ne);

