// Copyright 2008 Google Inc.
// All Rights Reserved.
/**
  * @fileoverview Some configuration variables for the project
  * 
  * @author  ( )
  */

//Zoom levels of mercator projection
var SkyZoomLevels = 20;
//Copyright information
var SkyCopyright = new GCopyrightCollection('DynamicVentures');
SkyCopyright.addCopyright(new GCopyright('DynamicVentures', 
                          new GLatLngBounds(new GLatLng(-90,-180),
                          new GLatLng(90, 180)), 0, ''));
//Base jpeg files url
var jpegBaseURL = 'http://mw1.google.com/mw-planetary/sky/skytiles_v1/';
var baseSearchUrl = 'http://www.google.com/maps?output=kml&hl=en&q=sky:';
var downSearchUrl = '/maps?output=kml&q=sky:';
// downSearchUrl should == baseSearchUrl outside without hl= which is added later, or remove that...
var mercatorProjectionInstance = new GMercatorProjection(SkyZoomLevels);
var iconFolder = 'Images/';
var thumbsFolder = 'Images/';
var constellationsKml = 'http://mw1.google.com/mw-planetary/sky/mapscontent_v1/constellations/constellation_names_and_lines.kmz';
var INVERT_CENTER_SEARCH = -1;

