// 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","The 3 Server Setup","The standard setup for radio-streaming");
Places[i++] = new Place("theory/bandwidth.htm","Bandwith","The speed of the internet connection");
Places[i++] = new Place("theory/bottlenecks.htm","Bottlenecks","The main problems in internet broadcasting");
Places[i++] = new Place("theory/digitizing.htm","Digitizing","Computerizing the sound from the soundcard");
Places[i++] = new Place("theory/firewalls.htm","Firewalls","How firewalls devide between public and private nets");
Places[i++] = new Place("theory/formats.htm","Audio-Formats","different formats for different purposes");
Places[i++] = new Place("theory/ips.htm","IPs","IP-adresses allow a unique addressing of computers on the internet");
Places[i++] = new Place("theory/quality.htm","quality","quality of different compressed audio formats");
Places[i++] = new Place("before/electro.htm","electricity","finding also a good electrical connection");
Places[i++] = new Place("before/internet.htm","internet","checking a connection");
Places[i++] = new Place("before/place.htm","finding a place","preparing steps in live streaming");
Places[i++] = new Place("getting/dhcp.htm","dhcp","getting an IPadress automatically");
Places[i++] = new Place("getting/dns.htm","dns","The dns resolves between names and numbers");
Places[i++] = new Place("getting/nettools.htm","network-tools","the main tools to check ones internet connection");
Places[i++] = new Place("getting/preview-dhcp.htm","dhcp","How to get an address on the internet");
Places[i++] = new Place("getting/scenarios.htm","Scenarios","Different connection scenarios");
Places[i++] = new Place("getting/switches.htm","Switches","the boxes which allow the internet to work");
Places[i++] = new Place("audio/alsa.htm","alsa / oss","the advanced linux sound architecture & the open sound system");
Places[i++] = new Place("audio/analogmixer.htm","analogmixer","normal, standard mixing desks");
Places[i++] = new Place("audio/audiocables.htm","audiocables","different cables for different purposes");
Places[i++] = new Place("audio/softmixer.htm","Computermixer","the mixer which can be controlled by software");
Places[i++] = new Place("audio/soundcard.htm","soundcard","the audio in and output of a computer");
Places[i++] = new Place("software/darkice.htm","darkice","one software to stream to an icecast server in OGG");
Places[i++] = new Place("software/icecast.htm","icecast 2","the Server software, allowing to stream over it");
Places[i++] = new Place("software/ices2.htm","ices 2","an alternative software to stream audio over the net");
Places[i++] = new Place("software/muse.htm","muse","the multiple streaming engine");
Places[i++] = new Place("software/stream.htm","streaming","the theory over the streaming process");
Places[i++] = new Place("streambox/start.htm","starting streambox","how to start the streambox CD");
Places[i++] = new Place("streambox/stream.htm","streambox","the standard streaming software on the CD");
Places[i++] = new Place("receive/buffers.htm","buffers","this buffers the incoming sound and prevents problems");
Places[i++] = new Place("receive/ice1status.htm","icecast 1","observing the status pages of an icecast I server");
Places[i++] = new Place("receive/ice2status.htm","icecast 2","observing the status pages of an icecast II server");
Places[i++] = new Place("receive/listen.htm","listen","listening to the stream");
Places[i++] = new Place("communicate/chat.htm","Chatting","communication during the streaming process");
Places[i++] = new Place("communicate/ssh.htm","ssh","controlling the streaming server and eventually the other side");

