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( 197,44,128,2,"INXS - Mystify",2003,12,13,18,45,24 );
musics[1]=new song( 206,44,128,1,"Fabolous - Holla Back",2003,12,13,18,41,58 );
musics[2]=new song( 258,22,128,2,"Grant Lee Phillips - Lazily Drowning",2003,12,13,18,21,34 );
musics[3]=new song( -1,0,0,0,"Low - Long Way Around The Sea",2003,12,13,18,16,58 );
musics[4]=new song( 239,44,192,2,"Jay Z - H To The Izzo",2003,12,13,18,13,3 );
