// Create a new Array for the Places of the tour
Places = new Array();
// Funtion to acces the Components of the Place
function Place(uri,Title,Description) 
{	this.uri           = uri;
	this.Title         = Title;
	this.Description   = Description;
}

var i=1;

Places[i++] = new Place(
"theory/3server.htm",
"3 server setup",
"The basic set-up to transfer sound over the net");

Places[i++] = new Place(
"theory/digitizing.htm",
"digitizing the sound",
"analog data will be computerized...");

Places[i++] = new Place(
"theory/formats.htm",
"different audio formats",
"different audio formats for different purposes");

Places[i++] = new Place(
"theory/quality.htm",
"different qualities",
"audio in different qualities, transferred over the internet");

Places[i++] = new Place(
"theory/bandwidth.htm",
"bandwitdh",
"How fast is the internet connection - how should we know?");

Places[i++] = new Place(
"theory/firewalls.htm",
"Firewalls",
"Firewalls and how to prevent them filtering our stream");

Places[i++] = new Place(
"theory/bottlenecks.htm",
"bottlenecks",
"typical bottlenecks for radio streaming");

Places[i++] = new Place(
"theory/ips.htm",
"IPS",
"IP-Addresses, public, private and others");
