function _top10(artist,artist_id,track,track_id,album,album_id,image) { this.artist = artist; this.artist_id = artist_id; this.track = track; this.track_id = track_id; this.album = album; this.album_id = album_id; this.image = image; return this; } function _selectGenre(id,name) { this.id = id; this.name = name; return this; } var selectGenres = new Array(); selectGenres[selectGenres.length] = new _selectGenre('0','All Genres'); selectGenres[selectGenres.length] = new _selectGenre('01','Alternative'); selectGenres[selectGenres.length] = new _selectGenre('04','Christian'); selectGenres[selectGenres.length] = new _selectGenre('05','Classical'); selectGenres[selectGenres.length] = new _selectGenre('07','Country'); selectGenres[selectGenres.length] = new _selectGenre('11','Hip-Hop'); selectGenres[selectGenres.length] = new _selectGenre('13','Jazz'); selectGenres[selectGenres.length] = new _selectGenre('16','Pop'); selectGenres[selectGenres.length] = new _selectGenre('19','Rock'); selectGenres[selectGenres.length] = new _selectGenre('22','World'); selected_genre_id = "0" var top10data = new Array(); top10data[top10data.length] = new _top10('Travis','10458188','Sing','30262021','Singles','13417233','http://images.napster.com/mp3s/2508/resources/216/019/files/216019704.jpg'); top10data[top10data.length] = new _top10('Travis','10458188','Why Does It Always Rain On Me?','30262024','Singles','13417233','http://images.napster.com/mp3s/2508/resources/216/019/files/216019704.jpg'); top10data[top10data.length] = new _top10('Haven','11579964','Proud Soldiers','33869068','Proud Soldiers - Single','13778287','http://images.napster.com/mp3s/3021/resources/263/422/files/263422125.jpg');