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 = 3;
var musics=new Array();
musics[0]=new song( 230,44,939,2,"Jack DeJohnette, John Patitucci & Danilo Perez - Michael",2009,6,22,11,46,26 );
musics[1]=new song( 577,44,613,2,"Jack DeJohnette, John Patitucci & Danilo Perez - Ode To MJQ",2009,6,22,11,36,39 );
musics[2]=new song( 345,44,908,2,"Jack DeJohnette, John Patitucci & Danilo Perez - White",2009,6,22,11,30,54 );
