// 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('');
SkyCopyright.addCopyright(new GCopyright('Sky', 
                          new GLatLngBounds(new GLatLng(-90,-180), 
                          new GLatLng(90,180)), 0,'Image Credit: DSS Consortium, SDSS, NASA/ESA'));
//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/icons/';
var thumbsFolder = 'images/thumbs/';
var constellationsKml = 'http://mw1.google.com/mw-planetary/sky/mapscontent_v1/constellations/constellation_names_and_lines_en-GB.kmz';
var INVERT_CENTER_SEARCH = -1;

