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 = 10;
var musics=new Array();
musics[0]=new song( 0,22,176,1,"done",2007,3,18,12,7,12 );
musics[1]=new song( -1,0,0,0,"Shakira - Illegal (Ft. Carlos Santana)",2007,3,17,15,12,39 );
musics[2]=new song( -1,0,0,0,"Dj SandStorm - DJ Sandstorm - 3FM Serious Yea",2007,3,16,15,51,58 );
musics[3]=new song( 190,44,192,2,"Ibrahim Ferrer & Omara Portuondo - Casablanca (As time goes by)",2007,3,16,15,48,6 );
musics[4]=new song( 314,44,160,2,"El Lele de Los Van Van feat. Radiohead (samples) - High and Dry",2007,3,16,15,42,51 );
musics[5]=new song( 238,44,192,2,"Coco Freeman feat. Franz Ferdinand - The Dark of the Matinee",2007,3,16,15,38,53 );
musics[6]=new song( 217,44,224,2,"Aquila Rose & Idania Valdez - Hotel Buena Vista",2007,3,16,15,35,15 );
musics[7]=new song( 190,44,320,2,"Vania Borges - Don’t Know Why",2007,3,16,15,32,5 );
musics[8]=new song( 257,44,192,2,"Sting - Fragilidad",2007,3,16,15,27,47 );
musics[9]=new song( 270,44,192,2,"Vania Borges feat. Quincy Jones - Ai No Corrida",2007,3,16,15,23,16 );

