function song( _length, _samplerate, _bitrate, _channels, _title, _year, _month, _day, _hour, _minute, _second )
{
	this.title = _title;
	this.length = _length;
	this.samplerate = _samplerate;
	this.bitrate = _bitrate;
	this.channels = _channels;
	this.year = _year;
	this.month = _month;
	this.day = _day;
	this.hour = _hour;
	this.minute = _minute;
	this.second = _second;
}
var blogamp_num_songs = 5;
var musics=new Array();
musics[0]=new song( 244,44,96,2,"Blur - To The End",2004,1,10,0,26,18 );
musics[1]=new song( 150,44,96,2,"Unknown - Track 9",2004,1,10,0,23,47 );
musics[2]=new song( 298,44,96,2,"Tracey Chapman - Fast Car ",2004,1,10,0,18,49 );
musics[3]=new song( 266,44,96,2,"U2 - Gone",2004,1,10,0,14,22 );
musics[4]=new song( -1,0,0,0,"Deep Blue Something - Breakfast at Tiffanys",2004,1,10,0,10,10 );
