// 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(
"software/stream.htm",
"the basics",
"The basics how radio streaming works");


Places[i++] = new Place(
"software/icecast.htm",
"icecast 2",
"the main streaming server, how it works");

Places[i++] = new Place(
"software/darkice.htm",
"darkice",
"sending out a stream, directly to the icecast server");

Places[i++] = new Place(
"software/ices2.htm",
"Ices 2",
"an alternative software to send out streams");

Places[i++] = new Place(
"software/muse.htm",
"muse",
"the multiple streaming engine - allows a lot");


