

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( -1,0,0,0,"Trapt - Echo",2005,9,10,20,58,24 );
musics[1]=new song( 212,44,128,2,"The X-Ecutioners - It\'s Going Down (Feat Linkin P",2005,9,9,16,49,56 );
musics[2]=new song( 268,44,192,2,"Roots - Seed 2.0, The (featuring Cody",2005,9,9,16,41,10 );
musics[3]=new song( -1,0,0,0,"Sarah Brightman & Michael Crawford - All I Ask Of You",2005,9,9,16,40,53 );
musics[4]=new song( 268,44,192,2,"Roots - Seed 2.0, The (featuring Cody",2005,9,9,16,29,22 );
