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,"Soundgarden - Black Hole Sun",2007,12,21,21,10,45 );
musics[1]=new song( 222,44,128,2,"The Beautiful Mistake - december was a long year...",2007,12,20,20,58,47 );
musics[2]=new song( -1,0,0,0,"Pink Floyd - Dark Side of the Moon",2007,12,20,20,54,57 );
musics[3]=new song( 224,44,128,2,"Cake - Daria",2007,12,20,20,51,13 );
musics[4]=new song( 244,44,128,2,"Toad The Wet Sprocket - Dam Would Break",2007,12,20,20,47,8 );
