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( 221,44,192,2,"Say Hi - Northwestern Girls",2010,9,8,23,12,36 );
musics[1]=new song( 175,44,128,2,"The Zolas - No Talking",2010,9,8,23,9,41 );
musics[2]=new song( 217,44,128,2,"Tokyo Police Club - End Of A Spark",2010,9,8,23,6,3 );
musics[3]=new song( 4,44,1411,2,"BROCKRADIO",2010,9,8,23,5,59 );
musics[4]=new song( 256,44,192,2,"Constantines - Draw Us Lines",2010,9,8,23,1,42 );
