/*------------------------------------------------------------------------------

   Copyright (c) 2005 Tyrell Corporation.

    This file is part of the Locative Blog project.
    http://locblog.sourceforge.net/

   Author   : $Author: darkeye $
   Version  : $Revision: 1.1 $
   Location : $Source: /cvsroot/locblog/website/var/htdocs/rotatingGlobe/sample/locations.js,v $
   
   Abstract : 

    A sample location data definition file.

   Copyright notice:

    This program is free software; you can redistribute it and/or
    modify it under the terms of the GNU General Public License  
    as published by the Free Software Foundation; either version 2
    of the License, or (at your option) any later version.
   
    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of 
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
    GNU General Public License for more details.
   
    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.

------------------------------------------------------------------------------*/
locations.push(new GeoLocation(
    "amsterdam", "Amsterdam", 4.54, 52.23, "targets/amsterdam.html"));
locations.push(new GeoLocation(
    "bangkok", "Bangkok", 100.50, 13.73, "targets/bangkok.html"));
locations.push(new GeoLocation(
    "budapest", "Budapest", 19.05, 47.50, "targets/budapest.html"));
locations.push(new GeoLocation(
    "chiang_mai", "Chiang Mai", 99.03, 18.82, "targets/chiang_mai.html"));
locations.push(new GeoLocation(
    "linz", "Linz", 14.18, 48.19, "targets/linz.html"));
locations.push(new GeoLocation(
    "london", "London", -0.16, 51.50, "targets/london.html"));
locations.push(new GeoLocation(
    "luang_prabang", "Luang Prabang", 102.14, 19.88, "targets/luang_prabang.html"));
locations.push(new GeoLocation(
    "new_york", "New York", -74.00, 40.70, "targets/new_york.html"));
locations.push(new GeoLocation(
    "Paris", "Paris", 2.33, 48.87, "targets/paris.html"));
locations.push( new GeoLocation(
    "philadelphia", "Philadelphia", -75.12, 39.96, "targets/philadelphia.html"));
locations.push( new GeoLocation(
    "prague", "Prague", 14.43, 50.10, "targets/prague.html"));
locations.push( new GeoLocation(
    "rotterdam", "Rotterdam", 4.29, 51.55, "targets/rotterdam.html"));
locations.push( new GeoLocation(
    "taipei", "Taipei", 121.36, 25.01, "targets/taipei.html"));
locations.push( new GeoLocation(
    "tokyo", "Tokyo", 139.50, 35.75, "targets/tokyo.html"));
locations.push( new GeoLocation(
    "vienna", "Vienna", 16.36, 48.20, "targets/vienna.html"));
locations.push( new GeoLocation(
    "washington", "Washington DC", -77.03, 38.88, "targets/washington.html"));


