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( 259,44,128,2,"A Sea Of Gold And Burgundy - Hit the Dance Floor",2012,2,5,16,46,37 );
musics[1]=new song( 171,44,192,2,"thomas/richard - When Hearts Explode",2012,2,5,16,43,44 );
musics[2]=new song( 14,44,1411,2,"spooky ID",2012,2,5,16,43,31 );
musics[3]=new song( 306,44,128,2,"Land of Talk - A Series of Small Flames",2012,2,5,16,38,23 );
musics[4]=new song( 244,44,192,2,"Josh Reichmann oracle band - Spirits Don\'t Leave",2012,2,5,16,34,19 );

