// 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(
"before/place.htm",
"Finding a place",
"The first thing is of course finding a good place in realspace");


Places[i++] = new Place(
"getting/scenarios.htm",
"Getting on the internet",
"For radiostreaming you have to be connected to the online world");

Places[i++] = new Place(
"streambox/start.htm",
"Software",
"a very simple start: The StreamBOX Live CD");


Places[i++] = new Place(
"streambox/stream.htm",
"Streaming",
"streaming with the StreamBOX Live CD");

