var ITEM_TYPE__ALBUM_OF_SONGS =1;
var ITEM_TYPE__SONG =2;
var ITEM_TYPE__WHOLE_ALBUM =3;

var QT_STATUS_LOGIN_SUCCESS = 370;
var QTCL_MEMBER =324;
var STATUS_NONE =0;
var QT_STATUS_SUCCESS = 1;
var STATUS_INVALID_USERNAME_OR_PASSWORD =-1;
var STATUS_UNEXPECTED_ERROR =-50;
var RETURN_CODE ="ret";
var BASE_PATH_MUSIC="http://www.HmongTunes.com/HmongTunes/media/";
  
var AJAX_PARAM_USERNAME = 79;
var AJAX_PARAM_PASSWORD = 80;
var AJAX_PARAM_W_ID = 509;
var AJAX_PARAM_LOC_ON_SUCCESS = 519;
var AJAX_PARAM_LOC_ON_FAILURE = 520;  
  
 /* 
function fnShowProdImg(str_img,n_row)
{
	var str_temp = "";
	str_temp ="<img src='" +str_img +"' alt='Product Image'/>";
	fnSetInnerhtml("div_popup_product_img", str_temp);
	
	var client_width = xClientWidth();
	xLeft("div_popup_product_details",(client_width/2)+10);
	xTop("div_popup_product_details",fnCalcRowYPos(n_row));
	fnShow("div_popup_product_details");
}

function fnHideProdImg()
{
	fnHide("div_popup_product_details");
}
 */  
  
//[
function Item()
{
	this.type=0;
	this.data=null;
}
//]

//[
function Song()
{
	this.name="";
	this.price=0;
	this.duration="";
	this.code=-1;
}
//]

//[
function AlbumOfSongs()
{
	this.name ="";
	this.path ="";
	this.img_path ="";
	this.array_songs = new Array();
	this.code=-1;
}
//]


function fnQT_GetChecked(str_elem)
{
	if (!str_elem)
		return 0;
	var elem = document.getElementById(str_elem);
	if (!elem)
		return 0;
	if (typeof(elem)=="undefined")
		return 0;
	if (typeof(elem.checked)=="undefined")
		return 0;
	return (elem.checked?1:0);
}

function fnQT_SafeParseInt(str_num, n_default)
{
	if (typeof(str_num)=="undefined")
		return n_default;

	if (str_num == "")
		return n_default;

	if (!str_num)
		return n_default;

	var n_out = n_default;

	try
	{
		n_out = parseInt(str_num,10);
	}
	catch (err)
	{
		n_out = n_default;
	}
	return n_out;
}

function fnCents2Display2(num_cents)
{
	if (!num_cents)
		return "$ 0.00";
	var str_a = "" +num_cents;
	if (!str_a || !(str_a.length))
		return "$ 0.00";
	var str_out ="";
	var len = str_a.length;
	if (len==1)
		str_out = "$ 0.0" +str_a;
	else if (len==2)
		str_out = "$ 0." +str_a;
	else
	{
		var str_c = "0";
		if (len>2)
			str_c = str_a.slice(0, len-2);
		str_out = "$ " +str_c + "." +str_a.slice(len-2, len);
	}
	return str_out;
}

// GetCookie is from http://techpatterns.com/downloads/javascript_cookies.php -- "free script"
function fnQT_GetCookie( check_name ) {
	// first we'll split this cookie up into name/value pairs
	// note: document.cookie only returns name=value, not the other components
	var a_all_cookies = document.cookie.split( ';' );
	var a_temp_cookie = '';
	var cookie_name = '';
	var cookie_value = '';
	var b_cookie_found = false; // set boolean t/f default f

	for ( i = 0; i < a_all_cookies.length; i++ )
	{
		// now we'll split apart each name=value pair
		a_temp_cookie = a_all_cookies[i].split( '=' );


		// and trim left/right whitespace while we're at it
		cookie_name = a_temp_cookie[0].replace(/^\s+|\s+$/g, '');

		// if the extracted name matches passed check_name
		if ( cookie_name == check_name )
		{
			b_cookie_found = true;
			// we need to handle case where cookie has no value but exists (no = sign, that is):
			if ( a_temp_cookie.length > 1 )
			{
				cookie_value = unescape( a_temp_cookie[1].replace(/^\s+|\s+$/g, '') );
			}
			// note that in cases where cookie is initialized but no value, null is returned
			if (cookie_value == null)
				cookie_value ="";
			return cookie_value;
		}
		a_temp_cookie = "";
		cookie_name = '';
	}
	if ( !b_cookie_found )
	{
		return "";
	}
}

function fnQT_SetCookie(cname, val)
{
	//var exp_date=new Date();  // " +exp_date.toGMTString()
	//exp_date.setDate(exp_date.getDate()+14);
	//document.cookie = cname + "=" +escape(val) + ";Version=1;Max-Age=864000; path=/; Domain=" +escape(".HmongTunes.com");
	document.cookie = cname + "=" +escape(val) + "; Version=1; Max-Age=864000; path=/"; 
}

function fnClickMyAcct()
{
	var str_url ="https://www.Quasitime.com:8443/tdt/valSessFwd.do?";
	str_url +="loc_on_success=" +encodeURIComponent("http://www.HmongTunes.com/HmongTunes/my_account.jsp"); 
	str_url +="&loc_on_fail=" +encodeURIComponent("http://www.HmongTunes.com/HmongTunes/jsignin.jsp");
    document.location =str_url;
}

function fnGenHeader2()
{
	var str_out ="";
	str_out += "<tr>";
	str_out += 	"<td class='style_header2'>";
	str_out += 	"</td>";
	str_out += "</tr>";
	document.write(str_out);
}

function fnGenHTHeader3()
{
    var str_out ="";
	str_out += "<div class='style_header'";
    str_out += " style='margin-bottom: 0px;'";
	str_out += ">";
    str_out += 	"<span class='style_head_logo' onclick=\"document.location='http://www.HmongTunes.com'\"><img src='../HmongTunes/img/hmongtunes_logo.png' /></span>";
    str_out += 	"<span class='style_head_text'><img src='../HmongTunes/img/hmong-music-place.png' height='24'></span>";
	str_out += 	"<img src='../HmongTunes/img/mic3.jpg' height='92' style='position:absolute; top:0px; right: 0px;' />";
	str_out += "</div>";
	document.write(str_out);
}
function fnGenHTHeader_Simple()
{
	var str_out ="";
	str_out += "<div style='width:100%; left: 0px; font: 12px Tahoma; color: #ffffff; position: fixed; z-index: 1000; background: #5f5f5f; border-top : 1px solid #5f5f5f; border-bottom: 1px solid #5f5f5f; height: 23px; top:0px; padding-top: 3px; text-align:center;'>";
	str_out += 	"<span class='ht_header_home' onclick='document.location=\"http://www.HmongTunes.com\";'>HmongTunes</span>";
	str_out += "</div>";
	document.write(str_out);
}

function fnGenControlBar()
{
    var str_out ="";
	str_out += "<div style=\"height: 20px; color: #f0f0f0; font: 12px Tahoma; background: #010101 url('../HmongTunes/img/bar.jpg'); padding: 3px 5px 0px 15px; position:relative;\">";	
	str_out += 	"<span class=\"style_control_bar_item_left\" style=\"left:5px; width: 35px; padding-top:3px; \" onclick='document.location=\"http://www.HmongTunes.com\";' title='Home'><img src='../HmongTunes/img/home_light.png' height='14' /></span>";	
	str_out += 	"<span class=\"style_control_bar_item\" style=\"left:41px; width: 95px;\" onclick=\"fnClickMyAcct();\">My Account</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;";
    str_out += 	"<a class='style_invisilink' href=\"http://www.Quasitime.com\" target=\"_blank\"><span class=\"style_control_bar_item\" style=\"left:138px; width: 120px;\">Musician Login</span></a>";
	str_out += 	"<span class=\"style_control_bar_item\" style=\"left:260px; width: 110px;\" onclick=\"document.location='../HmongTunes/bandsignup.htm';\">Musician Sign Up</span>";
    str_out += 	"<span class=\"style_control_bar_item\" style=\"left:372px; width: 100px;\" onclick=\"document.location='../HmongTunes/contact_us.htm';\">Contact Us</span>";
	str_out += 	"<span class=\"style_control_bar_item\" style=\"left:474px; width: 80px;\" onclick=\"document.location='../HmongTunes/about.htm';\">About</span>";
    str_out += 	"<span class=\"style_control_bar_right_cap\" style=\"left:372px; \"></span>";
    str_out += "</div>";
	document.write(str_out);
}
var ARRAY_ITEM_DEFN = new Array();


function fnQTShop_InitData()
{
	var album = null;
	
	album =	new Object();
	album.name ="Love So Amazing";
	album.path ="samples/LoveSoAmazing/";
	album.img_path ="images/Love_so_amazing.jpg";
	album.code=84;
	album.type =ITEM_TYPE__ALBUM_OF_SONGS;
	album.artist ="Unseen Belief";
	album.release ="August 1, 2010";
	album.w_id ="6417102031743165117";
	album.price =995;
	
	var array_songs = new Array();
	var item = null;
	
	item =new Song();
	item.name ="Intro";
	item.price =100;
	item.duration="2:14";	
	item.code = 94;
	item.filename ="Intro_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item =new Song();
	item.name ="Love So Amazing";
	item.price =150;
	item.duration="3:28";	
	item.code = 85;
	item.filename ="love_so_amazing.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item =new Song();
	item.name ="Inside ft. Porcheezi";
	item.price =150;
	item.duration="3:19";	
	item.code = 86;
	item.filename ="Inside_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item =new Song();
	item.name ="To My Soul";
	item.price =150;
	item.duration="4:42";	
	item.code = 87;
	item.filename ="To_my_soul_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item =new Song();
	item.name ="Take My Hand";
	item.price =150;
	item.duration="4:18";	
	item.code = 88;
	item.filename ="Take_my_hand_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item =new Song();
	item.name ="Where I Belong";
	item.price =150;
	item.duration="3:41";	
	item.code = 89;
	item.filename ="Where_i_belong_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item =new Song();
	item.name ="Someday ft. Andrea Jones, Porcheezi";
	item.price =150;
	item.duration="4:55";	
	item.code = 90;
	item.filename ="Someday_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item =new Song();
	item.name ="Celebrate ft. Belief, Maimee Her";
	item.price =150;
	item.duration="4:27";	
	item.code = 91;
	item.filename ="Celebrate_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item =new Song();
	item.name ="Dance With Me";
	item.price =150;
	item.duration="4:13";	
	item.code = 92;
	item.filename ="Dance_with_me_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item =new Song();
	item.name ="Victorious Anthem";
	item.price =150;
	item.duration="5:03";	
	item.code = 93;
	item.filename ="Victorious_anthem_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	album.songs = array_songs;
	ARRAY_ITEM_DEFN.push(album);	
		
	
	album =	new Object();
	album.name ="Volume 1";
	album.path ="samples/Volume1/";
	album.img_path ="images/volume_1_small.jpg";
	album.code=50;
	album.type =ITEM_TYPE__ALBUM_OF_SONGS;
	album.artist ="Unseen Belief";
	album.release ="July 31, 2006";
	album.w_id ="6417102031743165117";
	album.price =995;
	
	array_songs = new Array();
	item = null;
	
	item =new Song();
	item.name ="Hallelujah";
	item.price =150;
	item.duration="5:33";	
	item.code = 51;
	item.filename ="hallelujah.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item =new Object();
	item.name ="Row With Me";
	item.price =150;
	item.duration="4:07";	
	item.code = 52;
	item.filename ="row_with_me.mp3";
	item.lyrics ="";
	array_songs.push(item);

	item =new Object();
	item.name ="Rewind";
	item.price =150;
	item.duration="4:16";	
	item.code = 53;
	item.filename ="rewind.mp3";
	item.lyrics ="";
	array_songs.push(item);

	item =new Object();
	item.name ="Dear Creator";
	item.price =150;
	item.duration="4:12";	
	item.code = 54;
	item.filename ="dear_creator.mp3";
	item.lyrics ="";
	array_songs.push(item);

	item =new Object();
	item.name ="Who Do You Believe In?";
	item.price =150;
	item.duration="4:50";	
	item.code = 55;
	item.filename ="who_do_you_believe_in.mp3";
	item.lyrics ="";
	array_songs.push(item);

	item =new Object();
	item.name ="My Unseen Belief";
	item.price =150;
	item.duration="4:36";	
	item.code = 56;
	item.filename ="my_unseen_belief.mp3";
	item.lyrics =""
	array_songs.push(item);

	item =new Object();
	item.name ="That Day";
	item.price =150;
	item.duration="6:02";	
	item.code = 57;
	item.filename ="that_day.mp3";
	item.lyrics ="";
	array_songs.push(item);

	item =new Object();
	item.name ="Throw It Up";
	item.price =150;
	item.duration="4:50";	
	item.code = 58;
	item.filename ="throw_it_up.mp3";
	item.lyrics ="";
	array_songs.push(item);

	item =new Object();
	item.name ="Yexus Soldiers";
	item.price =150;
	item.duration="6:00";	
	item.code = 59;
	item.filename ="yexus_soldiers.mp3";
	item.lyrics ="";
	array_songs.push(item);

	item =new Object();
	item.name ="Rewind (Remix) featuring DJ Milk";
	item.price =150;
	item.duration="4:26";	
	item.code = 60;
	item.filename ="rewind_remix.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	album.songs = array_songs;
	ARRAY_ITEM_DEFN.push(album);

	
	album =	new Object();
	album.name ="Rise Above";
	album.path ="samples/RiseAbove/";
	album.img_path ="images/rise_above_small.jpg";	
	album.code=70;	
	album.type =ITEM_TYPE__ALBUM_OF_SONGS;
	album.artist ="Unseen Belief";
	album.release ="July 19, 2008";
	album.w_id ="6417102031743165117";
	album.price =1195;
	array_songs = null;
	array_songs = new Array();
	
	item =new Object();
	item.name ="Rise Above";
	item.price =150;
	item.duration="4:00";
	item.code =71;
	item.filename ="rise_above.mp3";
	item.lyrics ="";
	array_songs.push(item);
	item =new Object();
	item.name ="A Second To Breathe";
	item.price =150;
	item.duration="4:49";	
	item.code =72;
	item.filename ="a_second_to_breathe.mp3";
	item.lyrics ="";
	array_songs.push(item);
	item =new Object();
	item.name ="Jesus Loves Me";
	item.price =150;
	item.duration="4:00";	
	item.code =73;
	item.filename ="jesus_loves_me.mp3";
	item.lyrics ="";
	array_songs.push(item);
	item =new Object();
	item.name ="Rock This";
	item.price =150;
	item.duration="5:38";	
	item.code =74;
	item.filename ="rock_this.mp3";
	item.lyrics ="";
	array_songs.push(item);
	item =new Object();
	item.name ="Step Into The Water";
	item.price =150;
	item.duration="3:38";	
	item.code =75;
	item.filename ="step_into_the_water.mp3";
	item.lyrics ="";
	array_songs.push(item);
	item =new Object();
	item.name ="Christwalk";
	item.price =150;
	item.duration="3:41";	
	item.code =76;
	item.filename ="christwalk.mp3";
	item.lyrics ="";
	array_songs.push(item);
	item =new Object();
	item.name ="All In For Christ";
	item.price =150;
	item.duration="4:14";	
	item.code =77;
	item.filename ="all_in_for_Christ.mp3";
	item.lyrics ="";
	array_songs.push(item);
	item =new Object();
	item.name ="Throw It Up";
	item.price =150;
	item.duration="3:45";	
	item.code =78;
	item.filename ="throw_it_up2.mp3";
	item.lyrics ="";
	array_songs.push(item);
	item =new Object();
	item.name ="Rep His Life";
	item.price =150;
	item.duration="4:14";	
	item.code =79;
	item.filename ="rep_his_life.mp3";
	item.lyrics ="";
	array_songs.push(item);
	item =new Object();
	item.name ="Thank You II";
	item.price =150;
	item.duration="3:53";	
	item.code =80;
	item.filename ="thank_you.mp3";
	item.lyrics ="";
	array_songs.push(item);
	item =new Object();
	item.name ="Yexus Soldier II";
	item.price =150;
	item.duration="4:02";	
	item.code =81;
	item.filename ="yexus_soldier_2.mp3";
	item.lyrics ="";
	array_songs.push(item);

	album.songs = array_songs;
	ARRAY_ITEM_DEFN.push(album);

	//2
	album =	new Object();
	album.name ="Qhuas Peb Tug Tswv";
	album.path ="samples/";
	album.img_path ="images/cover.jpg";
	album.code=100;
	album.type =ITEM_TYPE__ALBUM_OF_SONGS;
	album.artist ="Heaven's Grace";
	album.release ="July 2009";
	album.w_id ="1805894253024025824";
	album.price =1495;
	
	var array_songs = new Array();
	var item = null;
	
	item =new Song();
	item.name ="Qhuas Peb Tug Tswv";
	item.price =150;
	item.duration="3:17";	
	item.code = 101;
	item.filename ="qhuas_peb_tug_tswv.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item =new Object();
	item.name ="Hu Nkauj Qhuas";
	item.price =150;
	item.duration="4:11";	
	item.code = 102;
	item.filename ="hu_nkauj_qhuas.mp3";
	item.lyrics ="";
	array_songs.push(item);

	item =new Object();
	item.name ="Kuv Nam";
	item.price =150;
	item.duration="4:06";	
	item.code = 103;
	item.filename ="kuv_nam.mp3";
	item.lyrics ="";
	array_songs.push(item);

	item =new Object();
	item.name ="Jesus, My Savior";
	item.price =150;
	item.duration="3:54";	
	item.code = 104;
	item.filename ="jesus_my_savior.mp3";
	item.lyrics ="";
	array_songs.push(item);

	item =new Object();
	item.name ="Sib Koom Teg";
	item.price =150;
	item.duration="3:26";	
	item.code = 105;
	item.filename ="sib_koom_teg.mp3";
	item.lyrics ="";
	array_songs.push(item);

	item =new Object();
	item.name ="Rov Sib Ntsib";
	item.price =150;
	item.duration="4:06";	
	item.code = 106;
	item.filename ="rov_sib_ntsib.mp3";
	item.lyrics ="";
	array_songs.push(item);

	item =new Object();
	item.name ="Xaav Hlub Koj";
	item.price =150;
	item.duration="3:22";	
	item.code = 107;
	item.filename ="xaav_hlub_koj.mp3";
	item.lyrics ="";
	array_songs.push(item);

	item =new Object();
	item.name ="No Other";
	item.price =150;
	item.duration="3:59";	
	item.code = 108;
	item.filename ="no_other.mp3";
	item.lyrics ="";
	array_songs.push(item);

	item =new Object();
	item.name ="Kuv Ua Koj Tsaug";
	item.price =150;
	item.duration="4:37";	
	item.code = 109;
	item.filename ="kuv_ua_koj_tsaug.mp3";
	item.lyrics ="";
	array_songs.push(item);

	item =new Object();
	item.name ="Yexus Yuav Lug";
	item.price =150;
	item.duration="4:49";	
	item.code = 110;
	item.filename ="yexus_yuav_lug.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item =new Object();
	item.name ="Cog Lug";
	item.price =150;
	item.duration="3:29";	
	item.code = 111;
	item.filename ="cog_lug.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item =new Object();
	item.name ="Zaam Lub Txim";
	item.price =150;
	item.duration="4:03";	
	item.code = 112;
	item.filename ="zaam_lub_txim.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item =new Object();
	item.name ="Broken";
	item.price =150;
	item.duration="3:11";	
	item.code = 113;
	item.filename ="broken.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item =new Object();
	item.name ="Lub Tim 25";
	item.price =150;
	item.duration="3:45";	
	item.code = 114;
	item.filename ="lub_tim_25.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	album.songs = array_songs;
	ARRAY_ITEM_DEFN.push(album);

	
	album =	new Object();
	album.name ="Instrumental";
	album.path ="samples/";
	album.img_path ="";	
	album.code=120;	
	album.type =ITEM_TYPE__ALBUM_OF_SONGS;
	album.artist ="Heaven's Grace";
	album.release ="";
	album.w_id ="1805894253024025824";
	album.price =-1;
	array_songs = null;
	array_songs = new Array();
	
	item =new Song();
	item.name ="Qhuas Peb Tug Tswv";
	item.price =295;
	item.duration="3:17";	
	item.code = 121;
	item.filename ="qhuas_peb_tug_tswv_instrumental.mp3";
	item.lyrics ="Qhuas_Peb_Tug_Tswv.pdf";
	array_songs.push(item);
	
	item =new Object();
	item.name ="Hu Nkauj Qhuas";
	item.price =295;
	item.duration="4:11";	
	item.code = 122;
	item.filename ="hu_nkauj_qhuas_instrumental.mp3";
	item.lyrics ="Hu_Nkauj_Qhuas.pdf";
	array_songs.push(item);

	item =new Object();
	item.name ="Kuv Nam";
	item.price =295;
	item.duration="4:06";	
	item.code = 123;
	item.filename ="kuv_nam_instrumental.mp3";
	item.lyrics ="Kuv_Nam.pdf";
	array_songs.push(item);

	item =new Object();
	item.name ="Jesus, My Savior";
	item.price =295;
	item.duration="3:54";	
	item.code = 124;
	item.filename ="jesus_my_savior_instrumental.mp3";
	item.lyrics ="Jesus_My_Savior.pdf";
	array_songs.push(item);

	item =new Object();
	item.name ="Sib Koom Teg";
	item.price =295;
	item.duration="3:26";	
	item.code = 125;
	item.filename ="sib_koom_teg_instrumental.mp3";
	item.lyrics ="Sib_Koom_Teg.pdf";
	array_songs.push(item);

	item =new Object();
	item.name ="Rov Sib Ntsib";
	item.price =295;
	item.duration="4:06";	
	item.code = 126;
	item.filename ="rov_sib_ntsib_instrumental.mp3";
	item.lyrics ="Rov_Sib_Ntsib.pdf";
	array_songs.push(item);

	item =new Object();
	item.name ="Xaav Hlub Koj";
	item.price =295;
	item.duration="3:22";	
	item.code = 127;
	item.filename ="xaav_hlub_koj_instrumental.mp3";
	item.lyrics ="Xaav_Hlub_Koj.pdf";
	array_songs.push(item);

	item =new Object();
	item.name ="No Other";
	item.price =295;
	item.duration="3:59";	
	item.code = 128;
	item.filename ="no_other_instrumental.mp3";
	item.lyrics ="No_Other.pdf";
	array_songs.push(item);

	item =new Object();
	item.name ="Kuv Ua Koj Tsaug";
	item.price =295;
	item.duration="4:37";	
	item.code = 129;
	item.filename ="kuv_ua_koj_tsaug_instrumental.mp3";
	item.lyrics ="Kuv_Ua_Koj_Tsaug.pdf";
	array_songs.push(item);

	item =new Object();
	item.name ="Yexus Yuav Lug";
	item.price =295;
	item.duration="4:49";	
	item.code = 130;
	item.filename ="yexus_yuav_lug_instrumental.mp3";
	item.lyrics ="Yexus_Yuav_Lug.pdf";
	array_songs.push(item);
	
	item =new Object();
	item.name ="Cog Lug";
	item.price =295;
	item.duration="3:29";	
	item.code = 131;
	item.filename ="cog_lug_instrumental.mp3";
	item.lyrics ="Cog_Lug.pdf";
	array_songs.push(item);
	
	item =new Object();
	item.name ="Zaam Lub Txim";
	item.price =295;
	item.duration="4:03";	
	item.code = 132;
	item.filename ="zaam_lub_txim_instrumental.mp3";
	item.lyrics ="Zaam_Lub_Txim.pdf";
	array_songs.push(item);
	
	item =new Object();
	item.name ="Broken";
	item.price =295;
	item.duration="3:11";	
	item.code = 133;
	item.filename ="broken_instrumental.mp3";
	item.lyrics ="Broken.pdf";
	array_songs.push(item);
	
	item =new Object();
	item.name ="Lub Tim 25";
	item.price =295;
	item.duration="3:45";	
	item.code = 134;
	item.filename ="lub_tim_25_instrumental.mp3";
	item.lyrics ="Lub_Tim_25.pdf";
	array_songs.push(item);

	album.songs = array_songs;
	ARRAY_ITEM_DEFN.push(album);


	album =	new Object();
	album.name ="Best of Holy Rhythm";
	album.path ="samples/";
	album.img_path ="img/hr_album_art.png";
	album.code=200;
	album.type =ITEM_TYPE__ALBUM_OF_SONGS;
	album.artist ="Holy Rhythm";
	album.release ="";
	album.w_id ="7398028892970750337";
	album.price =995;
	
	array_songs = new Array();
	item = null;
	
	item =new Song();
	item.name ="Nam";
	item.price =0;
	item.duration="4:31";	
	item.code = 203;
	item.filename ="Nam_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item =new Song();
	item.name ="Kuv Lub Sab";
	item.price =150;
	item.duration="2:39";	
	item.code = 201;
	item.filename ="Kuv_Lub_Sab_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item =new Song();
	item.name ="Lub Teeb Ci";
	item.price =150;
	item.duration="3:59";	
	item.code = 202;
	item.filename ="Lub_Teeb_Ci_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item =new Song();
	item.name ="Nrug Kuv Taug Kev";
	item.price =150;
	item.duration="3:20";	
	item.code = 204;
	item.filename ="Nrug_Kuv_Taug_Kev_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item =new Song();
	item.name ="Txais Kev Txomnyem";
	item.price =150;
	item.duration="3:59";	
	item.code = 205;
	item.filename ="Txais_Kev_Txomnyem_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item =new Song();
	item.name ="Yaam Zoo Ua Luaj";
	item.price =150;
	item.duration="4:09";	
	item.code = 206;
	item.filename ="Yaam_Zoo_Ua_Luaj_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item =new Song();
	item.name ="Yog Tig Tau Rov Qaab";
	item.price =150;
	item.duration="3:23";	
	item.code = 207;
	item.filename ="Yog_Tig_Tau_Rov_Qaab_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item =new Song();
	item.name ="Laam Sawj Ntau Tuj Cawj";
	item.price =150;
	item.duration="3:02";	
	item.code = 208;
	item.filename ="Laam_Sawj_Ntau_Tuj_Cawj_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
	
	item =new Song();
	item.name ="Hu Npausua";
	item.price =150;
	item.duration="4:25";	
	item.code = 209;
	item.filename ="Hu_Npausua_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
	
	album.songs = array_songs;
	ARRAY_ITEM_DEFN.push(album);



	album =	new Object();
	album.name ="Instrumental";
	album.path ="samples/";
	album.img_path ="";
	album.code=250;
	album.type =ITEM_TYPE__ALBUM_OF_SONGS;
	album.artist ="Holy Rhythm";
	album.release ="";
	album.w_id ="7398028892970750337";
	album.price =-1;
	
	array_songs = new Array();
	item = null;
	
	item =new Song();
	item.name ="Nam";
	item.price =295;
	item.duration="4:31";	
	item.code = 253;
	item.filename ="Nam_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item =new Song();
	item.name ="Kuv Lub Sab";
	item.price =295;
	item.duration="2:39";	
	item.code = 251;
	item.filename ="Kuv_Lub_Sab_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item =new Song();
	item.name ="Lub Teeb Ci";
	item.price =295;
	item.duration="3:59";	
	item.code = 252;
	item.filename ="Lub_Teeb_Ci_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item =new Song();
	item.name ="Yog Tig Tau Rov Qaab";
	item.price =295;
	item.duration="3:23";	
	item.code = 257;
	item.filename ="Yog_Tig_Tau_Rov_Qaab_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	album.songs = array_songs;
	ARRAY_ITEM_DEFN.push(album);



	// PVPT 
	// Album V
	album =	new Object();
	album.name ="Album V";
	album.path ="samples/album5/";
	album.img_path ="img/album5.jpg";
	album.code=420;
	album.type =ITEM_TYPE__ALBUM_OF_SONGS;
	album.artist ="Peb Vaj Peb Tsev";
	album.release ="";
	album.w_id ="3099289294181012727";
	album.price =995;
	
	array_songs = new Array();
	
	item = null;	
	item =new Song();
	item.name ="Huv Leejtxiv Lub Tsev";
	item.price =150;
	item.duration="4:41";	
	item.code = 421;
	item.filename ="Huv_Leejtxiv_Lub_Tsev_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	

	item = null;	
	item =new Song();
	item.name ="Xwm Txheej Qha Yexus Yuavlug";
	item.price =150;
	item.duration="4:22";	
	item.code = 422;
	item.filename ="Xwm_Txheej_Qha_Yexus_Yuavlug_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	

	item = null;	
	item =new Song();
	item.name ="Tswv Yexus Tug Muaj Sab Hlub";
	item.price =150;
	item.duration="4:04";	
	item.code = 423;
	item.filename ="Tswv_Yexus_Tug_Muaj_Sab_Hlub_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	

	item = null;	
	item =new Song();
	item.name ="Ua Txwjnkawm";
	item.price =150;
	item.duration="4:50";	
	item.code = 424;
	item.filename ="Ua_Txwjnkawm_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	

	item = null;	
	item =new Song();
	item.name ="Sau Ntoo Khaublig";
	item.price =150;
	item.duration="4:53";	
	item.code = 425;
	item.filename ="Sau_Ntoo_Khaublig_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Yexus Kuv Tug Tswv";
	item.price =150;
	item.duration="4:10";	
	item.code = 426;
	item.filename ="Yexus_Kuv_Tug_Tswv_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Nrug Tswv Yexus Moog Kev";
	item.price =150;
	item.duration="4:26";	
	item.code = 427;
	item.filename ="Nrug_Tswv_Yexus_Moog_Kev_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Leejnam Lub Kuamuag";
	item.price =150;
	item.duration="4:39";	
	item.code = 428;
	item.filename ="Leejnam_Lub_Kuamuag_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	album.songs = array_songs;
	ARRAY_ITEM_DEFN.push(album);

	// Album V - Instrumental
	album =	new Object();
	album.name ="Album V - Instrumental";
	album.path ="samples/album5/";
	album.img_path ="";
	album.code=440;
	album.type =ITEM_TYPE__ALBUM_OF_SONGS;
	album.artist ="Peb Vaj Peb Tsev";
	album.release ="";
	album.w_id ="3099289294181012727";
	album.price =-1;
	
	array_songs = new Array();
	
	item = null;	
	item =new Song();
	item.name ="Huv Leejtxiv Lub Tsev";
	item.price =295;
	item.duration="4:39";	
	item.code = 441;
	item.filename ="Huv_Leejtxiv_Lub_Tsev_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	

	item = null;	
	item =new Song();
	item.name ="Xwm Txheej Qha Yexus Yuavlug";
	item.price =295;
	item.duration="4:26";	
	item.code = 442;
	item.filename ="Xwm_Txheej_Qha_Yexus_Yuavlug_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	

	item = null;	
	item =new Song();
	item.name ="Tswv Yexus Tug Muaj Sab Hlub";
	item.price =295;
	item.duration="4:06";	
	item.code = 443;
	item.filename ="Tswv_Yexus_Tug_Muaj_Sab_Hlub_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	

	item = null;	
	item =new Song();
	item.name ="Ua Txwjnkawm";
	item.price =295;
	item.duration="4:52";	
	item.code = 444;
	item.filename ="Ua_Txwjnkawm_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	

	item = null;	
	item =new Song();
	item.name ="Sau Ntoo Khaublig";
	item.price =295;
	item.duration="4:54";	
	item.code = 445;
	item.filename ="Sau_Ntoo_Khaublig_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Yexus Kuv Tug Tswv";
	item.price =295;
	item.duration="4:04";	
	item.code = 446;
	item.filename ="Yexus_Kuv_Tug_Tswv_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Nrug Tswv Yexus Moog Kev";
	item.price =295;
	item.duration="4:26";	
	item.code = 447;
	item.filename ="Nrug_Tswv_Yexus_Moog_Kev_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Leejnam Lub Kuamuag";
	item.price =295;
	item.duration="4:49";	
	item.code = 448;
	item.filename ="Leejnam_Lub_Kuamuag_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	album.songs = array_songs;
	ARRAY_ITEM_DEFN.push(album);
	
	
	// Album IV
	album =	new Object();
	album.name ="Album IV";
	album.path ="samples/album4/";
	album.img_path ="img/album4.jpg";
	album.code=380;
	album.type =ITEM_TYPE__ALBUM_OF_SONGS;
	album.artist ="Peb Vaj Peb Tsev";
	album.release ="";
	album.w_id ="3099289294181012727";
	album.price =1095;
	
	array_songs = new Array();
	
	item = null;	
	item =new Song();
	item.name ="Kev Nyuajsab";
	item.price =150;
	item.duration="4:42";	
	item.code = 381;
	item.filename ="Kev_Nyuajsab_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
	
	item = null;	
	item =new Song();
	item.name ="Tshua Tug Mivnyuas";
	item.price =150;
	item.duration="4:53";	
	item.code = 382;
	item.filename ="Tshua_Tug_Mivnyuas_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
	
	item = null;	
	item =new Song();
	item.name ="Mivnyuas Xaav Lug Tsev";
	item.price =150;
	item.duration="6:07";	
	item.code = 383;
	item.filename ="Mivnyuas_Xaav_Lug_Tsev_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
	
	item = null;	
	item =new Song();
	item.name ="Ntuj Ceeb Tsheej";
	item.price =150;
	item.duration="3:54";	
	item.code = 384;
	item.filename ="Ntuj_Ceeb_Tsheej_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
	
	item = null;	
	item =new Song();
	item.name ="Txuj Kev Hlub";
	item.price =150;
	item.duration="3:24";	
	item.code = 385;
	item.filename ="Txuj_Kev_Hlub_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
	
	item = null;	
	item =new Song();
	item.name ="Lub Suab Hu";
	item.price =150;
	item.duration="3:41";	
	item.code = 386;
	item.filename ="Lub_Suab_Hu_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
	
	item = null;	
	item =new Song();
	item.name ="Raug Luas Cais";
	item.price =150;
	item.duration="5:40";	
	item.code = 387;
	item.filename ="Raug_Luas_Cais_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
	
	item = null;	
	item =new Song();
	item.name ="Koj Puas Yog Tug Ntseeg Tag";
	item.price =150;
	item.duration="3:48";	
	item.code = 388;
	item.filename ="Koj_Puas_Yog_Tug_Ntseeg_Tag_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
	
	item = null;	
	item =new Song();
	item.name ="Vaajtswv Hlub Moob";
	item.price =150;
	item.duration="4:55";	
	item.code = 389;
	item.filename ="Vaajtswv_Hlub_Moob_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
	
	item = null;	
	item =new Song();
	item.name ="Ua Vaajtswv Tubkhais";
	item.price =150;
	item.duration="4:36";	
	item.code = 390;
	item.filename ="Ua_Vaajtswv_Tubkhais_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	

	album.songs = array_songs;
	ARRAY_ITEM_DEFN.push(album);


	// Album IV - Instrumental
	album =	new Object();
	album.name ="Album IV - Instrumental";
	album.path ="samples/album4/";
	album.img_path ="";
	album.code=400;
	album.type =ITEM_TYPE__ALBUM_OF_SONGS;
	album.artist ="Peb Vaj Peb Tsev";
	album.release ="";
	album.w_id ="3099289294181012727";
	album.price =-1;
	
	array_songs = new Array();
	
	item = null;	
	item =new Song();
	item.name ="Kev Nyuajsab";
	item.price =295;
	item.duration="4:42";	
	item.code = 401;
	item.filename ="Kev_Nyuajsab_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
	
	item = null;	
	item =new Song();
	item.name ="Tshua Tug Mivnyuas";
	item.price =295;
	item.duration="4:53";	
	item.code = 402;
	item.filename ="Tshua_Tug_Mivnyuas_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
	
	item = null;	
	item =new Song();
	item.name ="Mivnyuas Xaav Lug Tsev";
	item.price =295;
	item.duration="6:07";	
	item.code = 403;
	item.filename ="Mivnyuas_Xaav_Lug_Tsev_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
	
	item = null;	
	item =new Song();
	item.name ="Ntuj Ceeb Tsheej";
	item.price =295;
	item.duration="3:54";	
	item.code = 404;
	item.filename ="Ntuj_Ceeb_Tsheej_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
	
	item = null;	
	item =new Song();
	item.name ="Txuj Kev Hlub";
	item.price =295;
	item.duration="3:24";	
	item.code = 405;
	item.filename ="Txuj_Kev_Hlub_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
	
	item = null;	
	item =new Song();
	item.name ="Lub Suab Hu";
	item.price =295;
	item.duration="3:41";	
	item.code = 406;
	item.filename ="Lub_Suab_Hu_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
	
	item = null;	
	item =new Song();
	item.name ="Raug Luas Cais";
	item.price =295;
	item.duration="5:40";	
	item.code = 407;
	item.filename ="Raug_Luas_Cais_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
	
	item = null;	
	item =new Song();
	item.name ="Koj Puas Yog Tug Ntseeg Tag";
	item.price =295;
	item.duration="3:48";	
	item.code = 408;
	item.filename ="Koj_Puas_Yog_Tug_Ntseeg_Tag_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
	
	item = null;	
	item =new Song();
	item.name ="Vaajtswv Hlub Moob";
	item.price =295;
	item.duration="4:55";	
	item.code = 409;
	item.filename ="Vaajtswv_Hlub_Moob_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
	
	item = null;	
	item =new Song();
	item.name ="Ua Vaajtswv Tubkhais";
	item.price =295;
	item.duration="4:36";	
	item.code = 410;
	item.filename ="Ua_Vaajtswv_Tubkhais_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	

	album.songs = array_songs;
	ARRAY_ITEM_DEFN.push(album);


	// Album III
	album =	new Object();
	album.name ="Album III";
	album.path ="samples/album3/";
	album.img_path ="img/album3.jpg";
	album.code=340;
	album.type =ITEM_TYPE__ALBUM_OF_SONGS;
	album.artist ="Peb Vaj Peb Tsev";
	album.release ="";
	album.w_id ="3099289294181012727";
	album.price =1095;
	
	array_songs = new Array();
	
	item = null;	
	item =new Song();
	item.name ="Ua Tsaug Vaajtswv";
	item.price =150;
	item.duration="5:21";	
	item.code = 341;
	item.filename ="Ua_Tsaug_Vaajtswv_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
	
	item = null;	
	item =new Song();
	item.name ="Lub Nroog Tom Hauv Ntej";
	item.price =150;
	item.duration="4:01";	
	item.code = 342;
	item.filename ="Lub_Nroog_Tom_Hauv_Ntej_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
	
	item = null;	
	item =new Song();
	item.name ="Hlub Taag Txujsa - Wedding";
	item.price =150;
	item.duration="5:38";	
	item.code = 343;
	item.filename ="Hlub_Taag_Txujsa_Wedding_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
	
	item = null;	
	item =new Song();
	item.name ="Qha Txuj Moo Zoo";
	item.price =150;
	item.duration="5:14";	
	item.code = 344;
	item.filename ="Qha_Txuj_Moo_Zoo_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
	
	item = null;	
	item =new Song();
	item.name ="Tig Lug Nrhav";
	item.price =150;
	item.duration="4:31";	
	item.code = 345;
	item.filename ="Tig_Lug_Nrhav_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
	
	item = null;	
	item =new Song();
	item.name ="Wb Lug Qhuas Koj";
	item.price =150;
	item.duration="5:42";	
	item.code = 346;
	item.filename ="Wb_Lug_Qhuas_Koj_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
	
	item = null;	
	item =new Song();
	item.name ="Muaj Sis Pub";
	item.price =150;
	item.duration="3:14";	
	item.code = 347;
	item.filename ="Muaj_Sis_Pub_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
	
	item = null;	
	item =new Song();
	item.name ="Koj Tso Kuv Tseg";
	item.price =150;
	item.duration="5:25";	
	item.code = 348;
	item.filename ="Koj_Tso_Kuv_Tseg_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
	
	item = null;	
	item =new Song();
	item.name ="Ua Vaajtswv Dlejnum";
	item.price =150;
	item.duration="5:13";	
	item.code = 349;
	item.filename ="Ua_Vaajtswv_Dlejnum_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
	
	item = null;	
	item =new Song();
	item.name ="Thov Vaajtswv Paab Koj";
	item.price =150;
	item.duration="4:44";	
	item.code = 350;
	item.filename ="Thov_Vaajtswv_Paab_Koj_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	

	album.songs = array_songs;
	ARRAY_ITEM_DEFN.push(album);


	// Instrumental
	album =	new Object();
	album.name ="Album III - Instrumental";
	album.path ="samples/album3/";
	album.img_path ="";
	album.code=360;
	album.type =ITEM_TYPE__ALBUM_OF_SONGS;
	album.artist ="Peb Vaj Peb Tsev";
	album.release ="";
	album.w_id ="3099289294181012727";
	album.price =-1;
	
	array_songs = new Array();
	
	item = null;	
	item =new Song();
	item.name ="Ua Tsaug Vaajtswv";
	item.price =295;
	item.duration="5:21";	
	item.code = 361;
	item.filename ="Ua_Tsaug_Vaajtswv_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
	
	item = null;	
	item =new Song();
	item.name ="Lub Nroog Tom Hauv Ntej";
	item.price =295;
	item.duration="4:02";	
	item.code = 362;
	item.filename ="Lub_Nroog_Tom_Hauv_Ntej_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
	
	item = null;	
	item =new Song();
	item.name ="Hlub Taag Txujsa - Wedding";
	item.price =295;
	item.duration="5:41";	
	item.code = 363;
	item.filename ="Hlub_Taag_Txujsa_Wedding_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
	
	item = null;	
	item =new Song();
	item.name ="Qha Txuj Moo Zoo";
	item.price =295;
	item.duration="5:15";	
	item.code = 364;
	item.filename ="Qha_Txuj_Moo_Zoo_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
	
	item = null;	
	item =new Song();
	item.name ="Tig Lug Nrhav";
	item.price =295;
	item.duration="4:33";	
	item.code = 365;
	item.filename ="Tig_Lug_Nrhav_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
	
	item = null;	
	item =new Song();
	item.name ="Wb Lug Qhuas Koj";
	item.price =295;
	item.duration="5:42";	
	item.code = 366;
	item.filename ="Wb_Lug_Qhuas_Koj_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
	
	item = null;	
	item =new Song();
	item.name ="Muaj Sis Pub";
	item.price =295;
	item.duration="3:16";	
	item.code = 367;
	item.filename ="Muaj_Sis_Pub_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
	
	item = null;	
	item =new Song();
	item.name ="Koj Tso Kuv Tseg";
	item.price =295;
	item.duration="5:25";	
	item.code = 368;
	item.filename ="Koj_Tso_Kuv_Tseg_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
	
	item = null;	
	item =new Song();
	item.name ="Ua Vaajtswv Dlejnum";
	item.price =295;
	item.duration="5:17";	
	item.code = 369;
	item.filename ="Ua_Vaajtswv_Dlejnum_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
	
	item = null;	
	item =new Song();
	item.name ="Thov Vaajtswv Paab Koj";
	item.price =295;
	item.duration="4:47";	
	item.code = 360;
	item.filename ="Thov_Vaajtswv_Paab_Koj_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	

	album.songs = array_songs;
	ARRAY_ITEM_DEFN.push(album);


	// Album II
	album =	new Object();
	album.name ="Album II";
	album.path ="samples/album2/";
	album.img_path ="img/album2.jpg";
	album.code=300;
	album.type =ITEM_TYPE__ALBUM_OF_SONGS;
	album.artist ="Peb Vaj Peb Tsev";
	album.release ="";
	album.w_id ="3099289294181012727";
	album.price =995;
	
	array_songs = new Array();
	
	item = null;	
	item =new Song();
	item.name ="Koj Yuav Uale Caag";
	item.price =150;
	item.duration="3:43";	
	item.code = 301;
	item.filename ="Koj_Yuav_Uale_Caag_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	

	item = null;	
	item =new Song();
	item.name ="Kuv Nam";
	item.price =150;
	item.duration="4:02";	
	item.code = 302;
	item.filename ="Kuv_Nam_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);

	item = null;	
	item =new Song();
	item.name ="Kuv Txiv";
	item.price =150;
	item.duration="5:52";	
	item.code = 303;
	item.filename ="Kuv_Txiv_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Rov Lug Tsev";
	item.price =150;
	item.duration="6:57";	
	item.code = 304;
	item.filename ="Rov_Lug_Tsev_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Tswv Yexus Yuav Lug";
	item.price =150;
	item.duration="6:07";	
	item.code = 305;
	item.filename ="Tswv_Yexus_Yuav_Lug_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Tug Cawm Txujsa";
	item.price =150;
	item.duration="5:08";	
	item.code = 306;
	item.filename ="Tug_Cawm_Txujsa_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Tug Ntseeg Ua Caag!";
	item.price =150;
	item.duration="4:09";	
	item.code = 307;
	item.filename ="Tug_Ntseeg_Ua_Caag!_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Ua Koj Tsaug";
	item.price =150;
	item.duration="2:48";	
	item.code = 308;
	item.filename ="Ua_Koj_Tsaug_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Xaiv Kuv Tseg";
	item.price =150;
	item.duration="4:50";	
	item.code = 309;
	item.filename ="Xaiv_Kuv_Tseg_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	album.songs = array_songs;
	ARRAY_ITEM_DEFN.push(album);	


	album =	new Object();
	album.name ="Album II - Instrumental";
	album.path ="samples/album2/";
	album.img_path ="";
	album.code=320;
	album.type =ITEM_TYPE__ALBUM_OF_SONGS;
	album.artist ="Peb Vaj Peb Tsev";
	album.release ="";
	album.w_id ="3099289294181012727";
	album.price =-1;
	
	array_songs = new Array();

	item = null;	
	item =new Song();
	item.name ="Koj Yuav Uale Caag";
	item.price =295;
	item.duration="3:43";	
	item.code = 321;
	item.filename ="Koj_Yuav_Uale_Caag_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
	
	item = null;	
	item =new Song();
	item.name ="Kuv Nam";
	item.price =295;
	item.duration="4:02";	
	item.code = 322;
	item.filename ="Kuv_Nam_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);

	item = null;	
	item =new Song();
	item.name ="Kuv Txiv";
	item.price =295;
	item.duration="5:52";	
	item.code = 323;
	item.filename ="Kuv_Txiv_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Rov Lug Tsev";
	item.price =295;
	item.duration="6:57";	
	item.code = 324;
	item.filename ="Rov_Lug_Tsev_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Tswv Yexus Yuav Lug";
	item.price =295;
	item.duration="6:07";	
	item.code = 325;
	item.filename ="Tswv_Yexus_Yuav_Lug_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Tug Cawm Txujsa";
	item.price =295;
	item.duration="5:08";	
	item.code = 326;
	item.filename ="Tug_Cawm_Txujsa_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Tug Ntseeg Ua Caag!";
	item.price =295;
	item.duration="4:09";	
	item.code = 327;
	item.filename ="Tug_Ntseeg_Ua_Caag!_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Ua Koj Tsaug";
	item.price =295;
	item.duration="2:48";	
	item.code = 328;
	item.filename ="Ua_Koj_Tsaug_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Xaiv Kuv Tseg";
	item.price =295;
	item.duration="4:50";	
	item.code = 329;
	item.filename ="Xaiv_Kuv_Tseg_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	album.songs = array_songs;
	ARRAY_ITEM_DEFN.push(album);	


	// Summertime
	album =	new Object();
	album.name ="Summertime (single)";
	album.path ="samples/summertime/";
	album.img_path ="img/summertime.jpg";
	album.code=700;
	album.type =ITEM_TYPE__ALBUM_OF_SONGS;
	album.artist ="Maimee Her";
	album.release ="";
	album.w_id ="2622392121002810363";
	album.price =-1;
	
	array_songs = new Array();
	
	item = null;	
	item =new Song();
	item.name ="Summertime";
	item.price =150;
	item.duration="3:46";	
	item.code = 701;
	item.filename ="Summertime_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	album.songs = array_songs;
	ARRAY_ITEM_DEFN.push(album);	


	// Matt's EP
	album =	new Object();
	album.name ="Matt's EP";
	album.path ="samples/beautiful_rescue/";
	album.img_path ="";
	album.code=620;
	album.type =ITEM_TYPE__ALBUM_OF_SONGS;
	album.artist ="Matt Xiong";
	album.release ="2010";
	album.w_id ="6204440712994318246";
	album.price =-1;
	
	array_songs = new Array();
	
	item = null;	
	item =new Song();
	item.name ="Smile";
	item.price =150;
	item.duration="4:35";	
	item.code = 621;
	item.filename ="Smile_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);

	album.songs = array_songs;
	ARRAY_ITEM_DEFN.push(album);

	// Beautiful Rescue
	album =	new Object();
	album.name ="Beautiful Rescue";
	album.path ="samples/beautiful_rescue/";
	album.img_path ="img/beautiful_rescue.jpg";
	album.code=600;
	album.type =ITEM_TYPE__ALBUM_OF_SONGS;
	album.artist ="Matt Xiong";
	album.release ="2009";
	album.w_id ="6204440712994318246";
	album.price =1095;
	
	array_songs = new Array();
	
	item = null;	
	item =new Song();
	item.name ="Help Me";
	item.price =150;
	item.duration="4:05";	
	item.code = 601;
	item.filename ="Help_Me_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Interlude";
	item.price =100;
	item.duration="2:03";	
	item.code = 602;
	item.filename ="Interlude_Sample.mp3";
	item.lyrics ="";
	
	array_songs.push(item);	
	item = null;	
	item =new Song();
	item.name ="Something Better";
	item.price =150;
	item.duration="3:53";	
	item.code = 603;
	item.filename ="Something_Better_Sample.mp3";
	item.lyrics ="";
	
	array_songs.push(item);	
	item = null;	
	item =new Song();
	item.name ="Beautiful Rescue";
	item.price =150;
	item.duration="3:57";	
	item.code = 604;
	item.filename ="Beautiful_Rescue_Sample.mp3";
	item.lyrics ="";
	
	array_songs.push(item);	
	item = null;	
	item =new Song();
	item.name ="Hallelujah, I Am Free";
	item.price =150;
	item.duration="4:28";	
	item.code = 605;
	item.filename ="Hallelujah_I_Am_Free_Sample.mp3";
	item.lyrics ="";
	
	array_songs.push(item);	
	item = null;	
	item =new Song();
	item.name ="God Is Good";
	item.price =150;
	item.duration="3:56";	
	item.code = 606;
	item.filename ="God_Is_Good_Sample.mp3";
	item.lyrics ="";
	
	array_songs.push(item);	
	item = null;	
	item =new Song();
	item.name ="In A Little While";
	item.price =150;
	item.duration="3:44";	
	item.code = 607;
	item.filename ="In_A_Little_While_Sample.mp3";
	item.lyrics ="";
	
	array_songs.push(item);	
	item = null;	
	item =new Song();
	item.name ="You Are";
	item.price =150;
	item.duration="5:10";	
	item.code = 608;
	item.filename ="You_Are_Sample.mp3";
	item.lyrics ="";	
	
	array_songs.push(item);	
	item = null;	
	item =new Song();
	item.name ="No One Like You";
	item.price =150;
	item.duration="5:26";	
	item.code = 609;
	item.filename ="No_One_Like_You_Sample.mp3";
	item.lyrics ="";	
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Everything";
	item.price =150;
	item.duration="5:50";	
	item.code = 610;
	item.filename ="Everything_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);

	album.songs = array_songs;
	ARRAY_ITEM_DEFN.push(album);
	
	
	
	
	
	// Lee Her
	// Freedom
	album =	new Object();
	album.name ="Freedom";
	album.path ="samples/";
	album.img_path ="img/freedom.jpg";
	album.code=800;
	album.type =ITEM_TYPE__ALBUM_OF_SONGS;
	album.artist ="Lee Her";
	album.release ="";
	album.w_id ="5095515443100954516";
	album.price =1095;
	
	array_songs = new Array();
	
	item = null;	
	item =new Song();
	item.name ="One Voice";
	item.price =150;
	item.duration="4:47";	
	item.code = 801;
	item.filename ="One_Voice_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Freedom";
	item.price =150;
	item.duration="5:31";	
	item.code = 802;
	item.filename ="Freedom_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Forever";
	item.price =150;
	item.duration="3:58";	
	item.code = 803;
	item.filename ="Forever_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Face To Face";
	item.price =150;
	item.duration="6:31";	
	item.code = 804;
	item.filename ="Face_To_Face_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Light The Way";
	item.price =150;
	item.duration="5:06";	
	item.code = 805;
	item.filename ="Light_The_Way_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Dance";
	item.price =150;
	item.duration="3:52";	
	item.code = 806;
	item.filename ="Dance_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
	
	item = null;	
	item =new Song();
	item.name ="Oh What A Love";
	item.price =150;
	item.duration="3:27";	
	item.code = 807;
	item.filename ="Oh_What_A_Love_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	

	item = null;	
	item =new Song();
	item.name ="A Call To Us All";
	item.price =150;
	item.duration="6:09";	
	item.code = 808;
	item.filename ="A_Call_To_Us_All_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
	
	item = null;	
	item =new Song();
	item.name ="Remember Me";
	item.price =150;
	item.duration="4:34";	
	item.code = 809;
	item.filename ="Remember_Me_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Point To The Moon";
	item.price =150;
	item.duration="4:46";	
	item.code = 810;
	item.filename ="Point_To_The_Moon_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);

	album.songs = array_songs;
	ARRAY_ITEM_DEFN.push(album);

	
	// Lee Her
	// Freedom - Instrumental
	album =	new Object();
	album.name ="Freedom - Instrumental";
	album.path ="samples/";
	album.img_path ="";
	album.code=820;
	album.type =ITEM_TYPE__ALBUM_OF_SONGS;
	album.artist ="Lee Her";
	album.release ="";
	album.w_id ="5095515443100954516";
	album.price =-1;
	
	array_songs = new Array();
	
	item = null;	
	item =new Song();
	item.name ="One Voice";
	item.price =250;
	item.duration="4:47";	
	item.code = 821;
	item.filename ="One_Voice_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Freedom";
	item.price =250;
	item.duration="5:31";	
	item.code = 822;
	item.filename ="Freedom_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Forever";
	item.price =250;
	item.duration="3:58";	
	item.code = 823;
	item.filename ="Forever_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Face To Face";
	item.price =250;
	item.duration="6:31";	
	item.code = 824;
	item.filename ="Face_To_Face_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Light The Way";
	item.price =250;
	item.duration="5:06";	
	item.code = 825;
	item.filename ="Light_The_Way_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Dance";
	item.price =250;
	item.duration="3:52";	
	item.code = 826;
	item.filename ="Dance_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
	
	item = null;	
	item =new Song();
	item.name ="Oh What A Love";
	item.price =250;
	item.duration="3:27";	
	item.code = 827;
	item.filename ="Oh_What_A_Love_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	

	item = null;	
	item =new Song();
	item.name ="A Call To Us All";
	item.price =250;
	item.duration="6:09";	
	item.code = 828;
	item.filename ="A_Call_To_Us_All_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
	
	item = null;	
	item =new Song();
	item.name ="Remember Me";
	item.price =250;
	item.duration="4:34";	
	item.code = 829;
	item.filename ="Remember_Me_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Point To The Moon";
	item.price =250;
	item.duration="4:46";	
	item.code = 830;
	item.filename ="Point_To_The_Moon_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);

	album.songs = array_songs;
	ARRAY_ITEM_DEFN.push(album);



	// The Call
	album =	new Object();
	album.name ="The Call";
	album.path ="samples/";
	album.img_path ="img/the_call.jpg";
	album.code=900;
	album.type =ITEM_TYPE__ALBUM_OF_SONGS;
	album.artist ="Lee Her";
	album.release ="";
	album.w_id ="5095515443100954516";
	album.price =1095;
	
	array_songs = new Array();
	
	item = null;	
	item =new Song();
	item.name ="A Father's Example";
	item.price =150;
	item.duration="4:49";	
	item.code = 901;
	item.filename ="A_Fathers_Example_Leejtxiv_Tug_Yaamntxwv_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="At First Light";
	item.price =150;
	item.duration="5:19";	
	item.code = 902;
	item.filename ="At_First_Light_Thaum_Lub_Ntuj_Kaam_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);

	item = null;	
	item =new Song();
	item.name ="Give";
	item.price =150;
	item.duration="4:20";	
	item.code = 903;
	item.filename ="Give_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Here I Am";
	item.price =150;
	item.duration="5:41";	
	item.code = 904;
	item.filename ="Here_I_Am_Kuv_Nyob_Nuav_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="I Wish I Could Dream About You";
	item.price =150;
	item.duration="4:11";	
	item.code = 905;
	item.filename ="I_Wish_I_Could_Dream_About_You_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="My Father";
	item.price =150;
	item.duration="3:27";	
	item.code = 906;
	item.filename ="My_Father_Kuv_Txiv_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
		
	item = null;	
	item =new Song();
	item.name ="Number 1";
	item.price =150;
	item.duration="4:12";	
	item.code = 907;
	item.filename ="Number_1_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
		
	item = null;	
	item =new Song();
	item.name ="The Call";
	item.price =150;
	item.duration="4:48";	
	item.code = 908;
	item.filename ="The_Call_Kwvtij_Moob_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
		
	item = null;	
	item =new Song();
	item.name ="It's Love";
	item.price =150;
	item.duration="4:45";	
	item.code = 909;
	item.filename ="Its_Love_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Shine Like A Star";
	item.price =150;
	item.duration="3:15";	
	item.code = 910;
	item.filename ="Shine_Like_A_Star_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);

	album.songs = array_songs;
	ARRAY_ITEM_DEFN.push(album);


	// The Call
	// Instrumental
	album =	new Object();
	album.name ="The Call - Instrumental";
	album.path ="samples/";
	album.img_path ="";
	album.code=920;
	album.type =ITEM_TYPE__ALBUM_OF_SONGS;
	album.artist ="Lee Her";
	album.release ="";
	album.w_id ="5095515443100954516";
	album.price =-1;
	
	array_songs = new Array();
	
	item = null;	
	item =new Song();
	item.name ="A Father's Example";
	item.price =250;
	item.duration="4:48";	
	item.code = 921;
	item.filename ="A_Fathers_Example_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="At First Light";
	item.price =250;
	item.duration="5:19";	
	item.code = 922;
	item.filename ="At_First_Light_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);

	item = null;	
	item =new Song();
	item.name ="Give";
	item.price =250;
	item.duration="4:17";	
	item.code = 923;
	item.filename ="Give_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Here I Am";
	item.price =250;
	item.duration="5:47";	
	item.code = 924;
	item.filename ="Here_I_Am_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="I Wish I Could Dream About You";
	item.price =250;
	item.duration="4:11";	
	item.code = 925;
	item.filename ="I_Wish_I_Could_Dream_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="My Father";
	item.price =250;
	item.duration="3:24";	
	item.code = 926;
	item.filename ="My_Father_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
		
	item = null;	
	item =new Song();
	item.name ="Number 1";
	item.price =250;
	item.duration="4:10";	
	item.code = 927;
	item.filename ="Number_1_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
		
	item = null;	
	item =new Song();
	item.name ="The Call";
	item.price =250;
	item.duration="4:47";	
	item.code = 928;
	item.filename ="The_Call_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);	
		
	item = null;	
	item =new Song();
	item.name ="It's Love";
	item.price =250;
	item.duration="4:50";	
	item.code = 929;
	item.filename ="Its_Love_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Shine Like A Star";
	item.price =250;
	item.duration="3:15";	
	item.code = 930;
	item.filename ="Shine_Like_A_Star_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);

	album.songs = array_songs;
	ARRAY_ITEM_DEFN.push(album);	
	
	
	// Siav Tsis Tu tseem Hlub
	album =	new Object();
	album.name ="Siav Tsis Tu Tseem Hlub";
	album.path ="samples/flashbak/";
	album.img_path ="img/flashbak_cover.jpg";
	album.code=1000;
	album.type =ITEM_TYPE__ALBUM_OF_SONGS;
	album.artist ="Flashbak";
	album.release ="2010";
	album.w_id ="6649677439801712879";
	album.price =1095;
	
	array_songs = new Array();
	
	item = null;	
	item =new Song();
	item.name ="Vim Kuv Hlub Koj Dhau";
	item.price =150;
	item.duration="4:41";	
	item.code = 1001;
	item.filename ="Vim_Kuv_Hlub_Koj_Dhau_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Yog Ntxov Paub";
	item.price =150;
	item.duration="3:42";	
	item.code = 1002;
	item.filename ="Yog_Ntxov_Paub_Sample.mp3";
	item.lyrics ="";
	
	array_songs.push(item);	
	item = null;	
	item =new Song();
	item.name ="Nkauj Hmoob Ntxim Hlub"
	item.price =150;
	item.duration="4:26";	
	item.code = 1003;
	item.filename ="Nkauj_Hmoob_Ntxim_Hlub_Sample.mp3";
	item.lyrics ="";
	
	array_songs.push(item);	
	item = null;	
	item =new Song();
	item.name ="Siav Tsis Tu Tseem Hlub";
	item.price =150;
	item.duration="3:02";	
	item.code = 1004;
	item.filename ="Siav_Tsis_Tu_Tseem_Hlub_Sample.mp3";
	item.lyrics ="";
	
	array_songs.push(item);	
	item = null;	
	item =new Song();
	item.name ="Puas Yog Tiag?";
	item.price =150;
	item.duration="4:54";	
	item.code = 1005;
	item.filename ="Puas_Yog_Tiag_Sample.mp3";
	item.lyrics ="";
	
	array_songs.push(item);	
	item = null;	
	item =new Song();
	item.name ="Hlub Thaum Tseem Muaj Txoj Sia";
	item.price =150;
	item.duration="4:18";	
	item.code = 1006;
	item.filename ="Hlub_Thaum_Tseem_Muaj_Txoj_Sia_Sample.mp3";
	item.lyrics ="";
	
	array_songs.push(item);	
	item = null;	
	item =new Song();
	item.name ="Ib Xyoos";
	item.price =150;
	item.duration="5:12";	
	item.code = 1007;
	item.filename ="Ib_Xyoos_Sample.mp3";
	item.lyrics ="";
	
	array_songs.push(item);	
	item = null;	
	item =new Song();
	item.name ="Ncaim Ib Sim";
	item.price =150;
	item.duration="4:51";	
	item.code = 1008;
	item.filename ="Ncaim_Ib_Sim_Sample.mp3";
	item.lyrics ="";	
	
	array_songs.push(item);	
	item = null;	
	item =new Song();
	item.name ="Ncaim Ib Sim - Remix";
	item.price =150;
	item.duration="4:38";	
	item.code = 1009;
	item.filename ="Ncaim_Ib_Sim_Remix_Sample.mp3";
	item.lyrics ="";	
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Ncaim Ib Sim - Instrumental";
	item.price =295;
	item.duration="4:49";	
	item.code = 1010;
	item.filename ="Ncaim_Ib_Sim_Instrumental_Sample.mp3";
	item.lyrics ="";
	array_songs.push(item);

	album.songs = array_songs;
	ARRAY_ITEM_DEFN.push(album);
	
// Xav Kom Tseem Muaj Koj
	album =	new Object();
	album.name ="Xav Kom Tseem Muaj Koj";
	album.path ="samples/huacuanag/";
	album.img_path ="img/huacuanag_cover.jpg";
	album.code=1100;
	album.type =ITEM_TYPE__ALBUM_OF_SONGS;
	album.artist ="Huacuanag";
	album.release ="2010";
	album.w_id ="1141831611791804166";
	album.price =1195;
	
	array_songs = new Array();
	
	item = null;	
	item =new Song();
	item.name ="TV";
	item.price =150;
	item.duration="3:52";	
	item.code = 1101;
	item.filename ="T_V_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Xav Kom Tseem koj";
	item.price =150;
	item.duration="4:53";	
	item.code = 1102;
	item.filename ="Xav_kom_tseem_muaj_koj_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Cia Koj Mus"
	item.price =150;
	item.duration="4:22";	
	item.code = 1103;
	item.filename ="Cia_koj_mus_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Leej Muam ft Skyline";
	item.price =150;
	item.duration="4:03";	
	item.code = 1104;
	item.filename ="Leej_muam_ft_skyline_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="5 Xyoos";
	item.price =150;
	item.duration="4:33";	
	item.code = 1105;
	item.filename ="5_xyoos_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Hmo No";
	item.price =150;
	item.duration="3:18";	
	item.code = 1106;
	item.filename ="Hmo_No_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Tseem Hlub";
	item.price =150;
	item.duration="4:42";	
	item.code = 1107;
	item.filename ="Tseem_hlub_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Mob siab";
	item.price =150;
	item.duration="3:59";	
	item.code = 1108;
	item.filename ="Mob_siab_sample.mp3";
	item.lyrics ="";	
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Ib Hnub";
	item.price =150;
	item.duration="4:07";	
	item.code = 1109;
	item.filename ="Ib_hnub_sample.mp3";
	item.lyrics ="";	
	array_songs.push(item);
	
;	
	item = null;	
	item =new Song();
	item.name ="Hlub Tsis Muaj Nqis";
	item.price =150;
	item.duration="3:58";	
	item.code = 1110;
	item.filename ="Hlub_tsis_muaj_nqis_sample.mp3";
	item.lyrics ="";	
	array_songs.push(item);
	
	
	item = null;	
	item =new Song();
	item.name ="5 Xyoos instrumental";
	item.price =295;
	item.duration="4:19";	
	item.code = 1111;
	item.filename ="5_xyoos_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Cia koj mus instrumental";
	item.price =295;
	item.duration="4:14";	
	item.code = 1112;
	item.filename ="Cia_koj_mus_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	album.songs = array_songs;
	ARRAY_ITEM_DEFN.push(album);
	
	// Txujkev Hlub Tag
	album =	new Object();
	album.name ="TxujKev Hlub Tag";
	album.path ="samples/txawjzoo/";
	album.img_path ="img/Txujkev_Hlub_Tag.jpg";
	album.code=1200;
	album.type =ITEM_TYPE__ALBUM_OF_SONGS;
	album.artist ="TxawjZoo & Maiv Npauj";
	album.release ="2007";
	album.w_id ="8891170460043366672";
	album.price =1095;
	array_songs = new Array();
	
	item = null;	
	item =new Song();
	item.name ="Dleb Npaum Twg";
	item.price =150;
	item.duration="3:38";	
	item.code = 1201;
	item.filename ="Dleb_Npaum_Twg_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Pum Dlheev Koj";
	item.price =150;
	item.duration="3:31";	
	item.code = 1202;
	item.filename ="Pum_Dlheev_Koj_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Cog Rua Koj Lub Sab"
	item.price =150;
	item.duration="3:58";	
	item.code = 1203;
	item.filename ="Cog_Rua_Koj_Lub_Sab_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Tug Tuabneeg Zoo";
	item.price =150;
	item.duration="3:27";	
	item.code = 1204;
	item.filename ="Tug_Tuabneeg_Zoo_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Tsi_Tu_Sab";
	item.price =150;
	item.duration="3:04";	
	item.code = 1205;
	item.filename ="Tsi_Tu_Sab_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Hlub Koj";
	item.price =150;
	item.duration="4:22";	
	item.code = 1206;
	item.filename ="Hlub_Koj_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Hlub Tshaaj Hlub Dlhau";
	item.price =150;
	item.duration="3:02";	
	item.code = 1207;
	item.filename ="Hlub_Tshaaj_Hlub_Dlhau_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Mob Lub Sab";
	item.price =150;
	item.duration="4:12";	
	item.code = 1208;
	item.filename ="Mob_Lub_Sab_sample.mp3";
	item.lyrics ="";	
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Zag Nuav";
	item.price =150;
	item.duration="5:12";	
	item.code = 1209;
	item.filename ="Zag_Nuav_sample.mp3";
	item.lyrics ="";	
	array_songs.push(item);
		
	item = null;	
	item =new Song();
	item.name ="Txujkev Hlub Tag";
	item.price =150;
	item.duration="3:52";	
	item.code = 1210;
	item.filename ="Txujkev_Hlub_Tag_sample.mp3";
	item.lyrics ="";	
	array_songs.push(item);
	
	album.songs = array_songs;
	ARRAY_ITEM_DEFN.push(album);
	
	
	// Txujkev Hlub Tag Instrumental
	album =	new Object();
	album.name ="TxujKev Hlub Tag instrumentals";
	album.path ="samples/txawjzoo/";
	album.img_path ="";
	album.code=1300;
	album.type =ITEM_TYPE__ALBUM_OF_SONGS;
	album.artist ="TxawjZoo & Maiv Npauj";
	album.release ="";
	album.w_id ="8891170460043366672";
	album.price =-1;
	array_songs = new Array();
	
	item = null;	
	item =new Song();
	item.name ="Dleb Npaum Twg instrumental";
	item.price =295;
	item.duration="3:38";	
	item.code = 1301;
	item.filename ="Dleb_Npaum_Twg_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Pum Dlheev Koj instrumental";
	item.price =295;
	item.duration="3:31";	
	item.code = 1302;
	item.filename ="Pum_Dlheev_Koj_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Cog Rua Koj Lub Sab instrumental";
	item.price =295;
	item.duration="3:58";	
	item.code = 1303;
	item.filename ="Cog_Rua_Koj_Lub_Sab_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Tug Tuabneeg Zoo instrumental";
	item.price =295;
	item.duration="3:24";	
	item.code = 1304;
	item.filename ="Tug_Tuabneeg_Zoo_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Tsi Tu Sab instrumental";
	item.price =295;
	item.duration="3:04";	
	item.code = 1305;
	item.filename ="Tsi_Tu_Sab_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Hlub Koj instrumental";
	item.price =295;
	item.duration="4:21";	
	item.code = 1306;
	item.filename ="Hlub_Koj_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Hlub Tshaaj Hlub Dlhau instrumental";
	item.price =295;
	item.duration="4:19";	
	item.code = 1307;
	item.filename ="Hlub_Tshaaj_Hlub_Dlhau_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Mob Lub Sab instrumental";
	item.price =295;
	item.duration="4:10";	
	item.code = 1308;
	item.filename ="Mob_Lub_Sab_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Zag Nuav instrumental";
	item.price =295;
	item.duration="5:12";	
	item.code = 1309;
	item.filename ="Zag_Nuav_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Txujkev Hlub Tag instrumental";
	item.price =295;
	item.duration="3:50";	
	item.code = 1310;
	item.filename ="Txujkev_Hlub_Tag_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);

	album.songs = array_songs;
	ARRAY_ITEM_DEFN.push(album);
	
	// Rov Lug Ua Zoo
	album =	new Object();
	album.name ="Rov Lug Ua Zoo";
	album.path ="samples/txawjzoo/";
	album.img_path ="img/Rov_Lug_Ua_Zoo.jpg";
	album.code=1400;
	album.type =ITEM_TYPE__ALBUM_OF_SONGS;
	album.artist ="TxawjZoo & Maiv Npauj";
	album.release ="2009";
	album.w_id ="8891170460043366672";
	album.price =1095;
	array_songs = new Array();
	
	item = null;	
	item =new Song();
	item.name ="Rov Lug Ua Zoo";
	item.price =150;
	item.duration="4:11";	
	item.code = 1401;
	item.filename ="Rov_Lug_Ua_Zoo_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Nub Kuv Ntsib Koj";
	item.price =150;
	item.duration="4:03";	
	item.code = 1402;
	item.filename ="Nub_Kuv_Ntsib_Koj_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Txhob Khaav";
	item.price =150;
	item.duration="4:15";	
	item.code = 1403;
	item.filename ="Txhob_Khaav_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Txujkev Nqaim";
	item.price =150;
	item.duration="3:54";	
	item.code = 1404;
	item.filename ="Txujkev_Nqaim_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Kuv Zoo Sab";
	item.price =150;
	item.duration="4:01";	
	item.code = 1405;
	item.filename ="Kuv_Zoo_Sab_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Txhob Chim Chim";
	item.price =150;
	item.duration="3:52";	
	item.code = 1406;
	item.filename ="Txhob_Chim_Chim_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Yexus Hlub Kuv Tag";
	item.price =150;
	item.duration="4:54";	
	item.code = 1407;
	item.filename ="Yexus_Hlub_Kuv_Tag_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Tsis Yog Laam Has";
	item.price =150;
	item.duration="3:22";	
	item.code = 1408;
	item.filename ="Tsis_Yoj_Laam_Has_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Ibleeg Hlub Ibleeg";
	item.price =150;
	item.duration="3:58";	
	item.code = 1409;
	item.filename ="Ibleeg_Hlub_Ibleeg_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Left Behind";
	item.price =150;
	item.duration="3:39";	
	item.code = 1410;
	item.filename ="Left_Behind_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);

	album.songs = array_songs;
	ARRAY_ITEM_DEFN.push(album);
	
	// Rov Lug Ua Zoo instrumentals
	album =	new Object();
	album.name ="Rov Lug Ua Zoo instrumentals";
	album.path ="samples/txawjzoo/";
	album.img_path ="";
	album.code=1500;
	album.type =ITEM_TYPE__ALBUM_OF_SONGS;
	album.artist ="TxawjZoo & Maiv Npauj";
	album.release ="";
	album.w_id ="8891170460043366672";
	album.price =-1;
	array_songs = new Array();
	
	item = null;	
	item =new Song();
	item.name ="Rov Lug Ua Zoo instrumental";
	item.price =295;
	item.duration="4:14";	
	item.code = 1501;
	item.filename ="Rov_Lug_Ua_Zoo_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Nub Kuv Ntsib Koj instrumental";
	item.price =295;
	item.duration="4:07";	
	item.code = 1502;
	item.filename ="Nub_Kuv_Ntsib_Koj_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	//item = null;	
	//item =new Song();
	//item.name ="Txhob_Khaav instrumental";
	//item.price =295;
	//item.duration="3:58";	
	//item.code = 1503;
	//item.filename ="Txhob_Khaav_instrumental_sample.mp3";
	//item.lyrics ="";
	//array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Txujkev Nqaim instrumental";
	item.price =295;
	item.duration="3:56";	
	item.code = 1504;
	item.filename ="Txujkev_Nqaim_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Kuv Zoo Sab instrumental";
	item.price =295;
	item.duration="4:03";	
	item.code = 1505;
	item.filename ="Kuv_Zoo_Sab_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Txhob Chim Chim instrumental";
	item.price =295;
	item.duration="3:54";	
	item.code = 1506;
	item.filename ="Txhob_Chim_Chim_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Yexus Hlub Kuv Tag instrumental";
	item.price =295;
	item.duration="4:55";	
	item.code = 1507;
	item.filename ="Yexus_Hlub_Kuv_Tag_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Tsis Yog Laam Has instrumental";
	item.price =295;
	item.duration="3:23";	
	item.code = 1508;
	item.filename ="Tsis_Yog_Laam_Has_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Ibleeg Hlub Ibleeg instrumental";
	item.price =295;
	item.duration="3:58";	
	item.code = 1509;
	item.filename ="Ibleeg_Hlub_Ibleeg_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Left Behind instrumental";
	item.price =295;
	item.duration="3:38";	
	item.code = 1510;
	item.filename ="Left_Behind_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	album.songs = array_songs;
	ARRAY_ITEM_DEFN.push(album);
	
	// Txaus Sab Zoo Sab
	album =	new Object();
	album.name ="Txaus Sab Zoo Sab";
	album.path ="samples/txawjzoo/";
	album.img_path ="img/Txaus_Sab_Zoo_Sab.jpg";
	album.code=1600;
	album.type =ITEM_TYPE__ALBUM_OF_SONGS;
	album.artist ="TxawjZoo & Maiv Npauj";
	album.release ="2008";
	album.w_id ="8891170460043366672";
	album.price =1095;
	array_songs = new Array();
	
	item = null;	
	item =new Song();
	item.name ="Tog Koj";
	item.price =150;
	item.duration="4:14";	
	item.code = 1601;
	item.filename ="Tog_Koj_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Kuv Twb Has";
	item.price =150;
	item.duration="4:30";	
	item.code = 1602;
	item.filename ="Kuv_Twb_Has_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Txaus Sab Zoo Sab";
	item.price =150;
	item.duration="3:53";	
	item.code = 1603;
	item.filename ="Txaus_Sab_Zoo_Sab_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Rov Qaab Lug";
	item.price =150;
	item.duration="4:45";	
	item.code = 1604;
	item.filename ="Rov_Qaab_Lug_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Qheb Koj Lub Sab";
	item.price =150;
	item.duration="4:22";	
	item.code = 1605;
	item.filename ="Qheb_Koj_Lub_Sab_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Yog Kuv Ibleeg";
	item.price =150;
	item.duration="3:01";	
	item.code = 1606;
	item.filename ="Yog_Kuv_Ibleeg_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Sab Phem Limham";
	item.price =150;
	item.duration="3:17";	
	item.code = 1607;
	item.filename ="Sab_Phem_Limham_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="10 Nqai Kevcai";
	item.price =150;
	item.duration="4:15";	
	item.code = 1608;
	item.filename ="10_Nqai_Kevcai_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	album.songs = array_songs;
	ARRAY_ITEM_DEFN.push(album);
	
	// Txaus Sab Zoo Sab instrumentals
	album =	new Object();
	album.name ="Txaus Sab Zoo Sab instrumentals";
	album.path ="samples/txawjzoo/";
	album.img_path ="";
	album.code=1700;
	album.type =ITEM_TYPE__ALBUM_OF_SONGS;
	album.artist ="TxawjZoo & Maiv Npauj";
	album.release ="";
	album.w_id ="8891170460043366672";
	album.price =-1;
	array_songs = new Array();
	
	item = null;	
	item =new Song();
	item.name ="Tog Koj instrumental";
	item.price =295;
	item.duration="4:15";	
	item.code = 1701;
	item.filename ="Tog_Koj_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Kuv Twb Has instrumental";
	item.price =295;
	item.duration="4:30";	
	item.code = 1702;
	item.filename ="Kuv_Twb_Has_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Txaus Sab Zoo Sab instrumental";
	item.price =295;
	item.duration="3:53";	
	item.code = 1703;
	item.filename ="Txaus_Sab_Zoo_Sab_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Rov Qaab Lug instrumental";
	item.price =295;
	item.duration="4:45";	
	item.code = 1704;
	item.filename ="Rov_Qaab_Lug_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Qheb Koj Lub Sab instrumental";
	item.price =295;
	item.duration="4:20";	
	item.code = 1705;
	item.filename ="Qheb_Koj_Lub_Sab_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Yog Kuv Ibleeg instrumental";
	item.price =295;
	item.duration="3:01";	
	item.code = 1706;
	item.filename ="Yog_Kuv_Ibleeg_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Sab Phem Limham instrumental";
	item.price =295;
	item.duration="3:17";	
	item.code = 1707;
	item.filename ="Sab_Phem_Limham_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="10 Nqai Kevcai instrumental";
	item.price =295;
	item.duration="4:13";	
	item.code = 1708;
	item.filename ="10_Nqai_Kevcai_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	album.songs = array_songs;
	ARRAY_ITEM_DEFN.push(album);
	
	// Tig Koj Lub Ntsejmuaj
	album =	new Object();
	album.name ="Tig Koj Lub Ntsejmuag";
	album.path ="samples/txawjzoo/";
	album.img_path ="img/Hnub_Qub_Ntsa.jpg";
	album.code=1800;
	album.type =ITEM_TYPE__ALBUM_OF_SONGS;
	album.artist ="Hnub Qub Ntsa";
	album.release ="1999";
	album.w_id ="8891170460043366672";
	album.price =1095;
	array_songs = new Array();
	
	item = null;	
	item =new Song();
	item.name ="Los Cuag Tus Tswv";
	item.price =150;
	item.duration="3:44";	
	item.code = 1801;
	item.filename ="Los_Cuag_Tus_Tswv_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Tig Koj Lub Ntsejmuag";
	item.price =150;
	item.duration="5:08";	
	item.code = 1802;
	item.filename ="Tig_Koj_Lub_Ntsejmuag_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Yuav Hlub Koj";
	item.price =150;
	item.duration="4:46";	
	item.code = 1803;
	item.filename ="Yuav_Hlub_Koj_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Txhawb Nqa Nws";
	item.price =150;
	item.duration="3:19";	
	item.code = 1804;
	item.filename ="Txhawb_Nqa_Nws_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Txujkev Hlub Nuav";
	item.price =150;
	item.duration="4:05";	
	item.code = 1805;
	item.filename ="Txujkev_Hlub_Nuav_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Tsuas Yog Yexus";
	item.price =150;
	item.duration="5:49";	
	item.code = 1806;
	item.filename ="Tsuas_Yog_Yexus_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Hlub'e";
	item.price =150;
	item.duration="5:40";	
	item.code = 1807;
	item.filename ="Hlub_e_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Txhob Tu Siab";
	item.price =150;
	item.duration="4:07";	
	item.code = 1808;
	item.filename ="Txhob_Tu_Siab_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Kuv Tsis To Taub";
	item.price =150;
	item.duration="6:03";	
	item.code = 1809;
	item.filename ="Kuv_Tsis_To_Taub_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Mus Qaum Ntuj Lawm";
	item.price =150;
	item.duration="4:42";	
	item.code = 1810;
	item.filename ="Mus_Qaum_Ntuj_Lawm_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);

	album.songs = array_songs;
	ARRAY_ITEM_DEFN.push(album);
	
	
		// Jubilee
	album =	new Object();
	album.name ="Jubilee";
	album.path ="samples/jubilee/";
	album.img_path ="img/jubilee.jpeg";
	album.code=2000;
	album.type =ITEM_TYPE__ALBUM_OF_SONGS;
	album.artist ="Jubilee";
	album.release ="2006";
	album.w_id ="5284245216447812719";
	album.price =995;
	array_songs = new Array();
	
	item = null;	
	item =new Song();
	item.name ="Owe It All";
	item.price =150;
	item.duration="5:03";	
	item.code = 2001;
	item.filename ="Owe_It_All_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="My Home";
	item.price =150;
	item.duration="4:55";	
	item.code = 2002;
	item.filename ="My_Home_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Numbers";
	item.price =150;
	item.duration="4:18";	
	item.code = 2003;
	item.filename ="Numbers_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Reminding Me";
	item.price =150;
	item.duration="3:42";	
	item.code = 2004;
	item.filename ="Reminding_Me_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="For Just A Moment";
	item.price =150;
	item.duration="5:12";	
	item.code = 2005;
	item.filename ="For_Just_A_Moment_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="You Alone";
	item.price =150;
	item.duration="4:10";	
	item.code = 2006;
	item.filename ="You_Alone_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Chasing";
	item.price =150;
	item.duration="4:26";	
	item.code = 2007;
	item.filename ="Chasing_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="All I Need";
	item.price =150;
	item.duration="4:19";	
	item.code = 2008;
	item.filename ="All_I_Need_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Your Beauty";
	item.price =150;
	item.duration="3:56";	
	item.code = 2009;
	item.filename ="Your_Beauty_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Angels";
	item.price =150;
	item.duration="3:25";	
	item.code = 2010;
	item.filename ="Angels_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Ode To Love";
	item.price =150;
	item.duration="2:53";	
	item.code = 2011;
	item.filename ="Ode_To_Love_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);

	album.songs = array_songs;
	ARRAY_ITEM_DEFN.push(album);
	
	// Christ Centered Studio
	album =	new Object();
	album.name ="Christ Centered Studio";
	album.path ="samples/christ_centered_studio/";
	album.img_path ="img/christ_centered_studio_2.jpeg";
	album.code=2100;
	album.type =ITEM_TYPE__ALBUM_OF_SONGS;
	album.artist ="Christ Centered Studio";
	album.release ="2010";
	album.w_id ="3222056730043161819";
	album.price =-1;
	array_songs = new Array();
	
	item = null;	
	item =new Song();
	item.name ="At the Cross instrumental";
	item.price =295;
	item.duration="3:27";	
	item.code = 2101;
	item.filename ="At_the_cross_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	album.songs = array_songs;
	ARRAY_ITEM_DEFN.push(album);
	
	// Messengers For Christ
	album =	new Object();
	album.name ="Thov Coj Kuv";
	album.path ="samples/messengers/";
	album.img_path ="img/messengers.jpg";
	album.code=2300;
	album.type =ITEM_TYPE__ALBUM_OF_SONGS;
	album.artist ="Messengers For Christ";
	album.release ="2010";
	album.w_id ="114328879456921813";
	album.price =-1;
	array_songs = new Array();
	
	item = null;	
	item =new Song();
	item.name ="Thov Coj Kuv";
	item.price =150;
	item.duration="4:50";	
	item.code = 2301;
	item.filename ="Thov_coj_kuv_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Kuv Muaj Txujsa Tau Lecaag";
	item.price =150;
	item.duration="4:30";	
	item.code = 2302;
	item.filename ="Kuv_muaj_txujsa_tau_lecaag_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Nyog Tog Vaajtswv";
	item.price =150;
	item.duration="5:09";	
	item.code = 2303;
	item.filename ="Nyog_tog_vaajtswv_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Ncu Txug Vaajtswv kev Hlub";
	item.price =150;
	item.duration="4:03";	
	item.code = 2304;
	item.filename ="Ncu_txug_vaajtswv_kev_hlub_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Christmas Zoo Sab";
	item.price =150;
	item.duration="3:56";	
	item.code = 2305;
	item.filename ="Christmas_zoo_sab_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Vaajtswv Kev Hlub";
	item.price =150;
	item.duration="4:34";	
	item.code = 2306;
	item.filename ="Vaajtswv_kev_hlub_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Vaajtswv Nrug Kuv Nyob";
	item.price =150;
	item.duration="3:54";	
	item.code = 2307;
	item.filename ="Vaajtswv_nrug_kuv_nyob_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Txijnkawm Yog Koobmoov";
	item.price =150;
	item.duration="3:26";	
	item.code = 2308;
	item.filename ="Txijnkawm_yog_koobmoov_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Thov Coj Kuv instrumental";
	item.price =295;
	item.duration="4:50";	
	item.code = 2309;
	item.filename ="Thov_coj_kuv_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Kuv Muaj Txujsa Tau Lecaag instrumental";
	item.price =295;
	item.duration="4:30";	
	item.code = 2310;
	item.filename ="Kuv_muaj_txujsa_tau_lecaag_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Nyog Tog Vaajtswv instrumental";
	item.price =295;
	item.duration="4:03";	
	item.code = 2311;
	item.filename ="Nyog_tog_vaajtswv_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Ncu Txug Vaajtswv Kev Hlub instrumental";
	item.price =295;
	item.duration="3:56";	
	item.code = 2312;
	item.filename ="Ncu_txug_vaajtswv_kev_hlub_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Christmas Zoo Sab instrumental";
	item.price =295;
	item.duration="4:34";	
	item.code = 2313;
	item.filename ="Christmas_zoo_sab_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Vaajtswv Kev Hlub instrumental";
	item.price =295;
	item.duration="3:54";	
	item.code = 2314;
	item.filename ="Vaajtswv_kev_hlub_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Vaajtswv Nrug Kuv Nyob Hlub instrumental";
	item.price =295;
	item.duration="3:26";	
	item.code = 2315;
	item.filename ="Vaajtswv_nrug_kuv_nyob_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Txijnkawm Yog Koobmoov instrumental";
	item.price =295;
	item.duration="3:27";	
	item.code = 2316;
	item.filename ="Txijnkawm_yog_koobmoov_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	
	album.songs = array_songs;
	ARRAY_ITEM_DEFN.push(album);
	
	// Kristine Xiong
	album =	new Object();
	album.name ="Yexus Ib Leeg Xwb";
	album.path ="samples/kristinexiong/";
	album.img_path ="img/album_kristine_xiong.jpg";
	album.code=3000;
	album.type =ITEM_TYPE__ALBUM_OF_SONGS;
	album.artist ="Kristine Xiong";
	album.release ="2010";
	album.w_id ="4164876004748407515";
	album.price =995;
	array_songs = new Array();
	
	item = null;	
	item =new Song();
	item.name ="Tus Thawjcoj Zoo";
	item.price =150;
	item.duration="3:58";	
	item.code = 3001;
	item.filename ="Tus_thawjcoj_zoo_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Raws Koj Qab";
	item.price =150;
	item.duration="3:52";	
	item.code = 3002;
	item.filename ="Raws_koj_qab_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Yog Tsis Muaj Tagkis";
	item.price =150;
	item.duration="7:04";	
	item.code = 3003;
	item.filename ="Yog_tsis_muaj_tagkis_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Yexus Ib Leeg Xwb";
	item.price =150;
	item.duration="4:48";	
	item.code = 3004;
	item.filename ="Yexus_ib_leeg_xwb_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Vajtswv Kev Hlub";
	item.price =150;
	item.duration="5:37";	
	item.code = 3005;
	item.filename ="Vajtswv_kev_hlub_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Zoo Li Npausuav";
	item.price =150;
	item.duration="5:27";	
	item.code = 3006;
	item.filename ="Zoo_li_npausuav_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Holy Beyond Afar";
	item.price =150;
	item.duration="5:33";	
	item.code = 3007;
	item.filename ="Holy_beyond_afar_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Lub Theeb Ci";
	item.price =150;
	item.duration="4:25";	
	item.code = 3008;
	item.filename ="Lub_teeb_ci_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Oh, Kuv Tus Tswv!";
	item.price =150;
	item.duration="5:04";	
	item.code = 3009;
	item.filename ="Oh_kuv_tus_tswv_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Secret";
	item.price =150;
	item.duration="5:11";	
	item.code = 3010;
	item.filename ="Secret_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	album.songs = array_songs;
	ARRAY_ITEM_DEFN.push(album);
	
	
	// Kristine Xiong
	album =	new Object();
	album.name ="Yexus Ib Leeg Xwb Instrumental";
	album.path ="samples/kristinexiong/";
	album.img_path ="";
	album.code=3011;
	album.type =ITEM_TYPE__ALBUM_OF_SONGS;
	album.artist ="Kristine Xiong";
	album.release ="2010";
	album.w_id ="4164876004748407515";
	album.price =-1;
	array_songs = new Array();
	
	item = null;	
	item =new Song();
	item.name ="Tus Thawjcoj Zoo";
	item.price =295;
	item.duration="3:58";	
	item.code = 3012;
	item.filename ="Tus_thawjcoj_zoo_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Raws Koj Qab";
	item.price =295;
	item.duration="3:52";	
	item.code = 3013;
	item.filename ="Raws_koj_qab_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Yog Tsis Muaj Tagkis";
	item.price =295;
	item.duration="7:04";	
	item.code = 3014;
	item.filename ="Yog_tsis_muaj_tagkis_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Yexus Ib Leeg Xwb";
	item.price =295;
	item.duration="4:48";	
	item.code = 3015;
	item.filename ="Yexus_ib_leeg_xwb_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Vajtswv Kev Hlub";
	item.price =295;
	item.duration="5:37";	
	item.code = 3016;
	item.filename ="Vajtswv_kev_hlub_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Zoo Li Npausuav";
	item.price =295;
	item.duration="5:27";	
	item.code = 3017;
	item.filename ="Zoo_li_npausuav_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Holy Beyond Afar";
	item.price =295;
	item.duration="5:33";	
	item.code = 3018;
	item.filename ="Holy_beyond_afar_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Lub Theeb Ci";
	item.price =295;
	item.duration="4:25";	
	item.code = 3019;
	item.filename ="Lub_teeb_ci_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Oh, Kuv Tus Tswv!";
	item.price =295;
	item.duration="5:04";	
	item.code = 3020;
	item.filename ="Oh_kuv_tus_tswv_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Secret";
	item.price =295;
	item.duration="5:11";	
	item.code = 3021;
	item.filename ="Secret_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	album.songs = array_songs;
	ARRAY_ITEM_DEFN.push(album);
	
	// Kristine Xiong
	album =	new Object();
	album.name ="Ib Leej Ntxhais";
	album.path ="samples/kristinexiong/";
	album.img_path ="img/kristine_xiong_album.jpg";
	album.code=3022;
	album.type =ITEM_TYPE__ALBUM_OF_SONGS;
	album.artist ="Kristine Xiong";
	album.release ="2008";
	album.w_id ="4164876004748407515";
	album.price =995;
	array_songs = new Array();
	
	item = null;	
	item =new Song();
	item.name ="Txoj Kev Ntseeg";
	item.price =150;
	item.duration="3:20";	
	item.code = 3023;
	item.filename ="Txoj_kev_ntseeg_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Ib Sim Niamtub";
	item.price =150;
	item.duration="4:29";	
	item.code = 3024;
	item.filename ="Ib_sim_niamtub_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Tsis Muaj Koj";
	item.price =150;
	item.duration="4:37";	
	item.code = 3025;
	item.filename ="Tsis_muaj_koj_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Find My way";
	item.price =150;
	item.duration="4:38";	
	item.code = 3026;
	item.filename ="Find_my_way_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Ib Leej Ntxhais";
	item.price =150;
	item.duration="4:48";	
	item.code = 3027;
	item.filename ="Ib_leej_ntxhais_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Los Cuag Koj";
	item.price =150;
	item.duration="5:07";	
	item.code = 3028;
	item.filename ="Los_cuag_koj_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Tus Kuv Hlub";
	item.price =150;
	item.duration="4:27";	
	item.code = 3029;
	item.filename ="Tus_kuv_hlub_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Txij Hnub No";
	item.price =150;
	item.duration="4:59";	
	item.code = 3030;
	item.filename ="Txij_hnub_no_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
		
	album.songs = array_songs;
	ARRAY_ITEM_DEFN.push(album);
	
	// Kristine Xiong
	album =	new Object();
	album.name ="Ib Leej Ntxhais Instrumentals";
	album.path ="samples/kristinexiong/";
	album.img_path ="";
	album.code=3040;
	album.type =ITEM_TYPE__ALBUM_OF_SONGS;
	album.artist ="Kristine Xiong";
	album.release ="2008";
	album.w_id ="4164876004748407515";
	album.price =-1;
	array_songs = new Array();
	
	item = null;	
	item =new Song();
	item.name ="Txoj Kev Ntseeg";
	item.price =295;
	item.duration="3:20";	
	item.code = 3041;
	item.filename ="Txoj_kev_ntseeg_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Ib Sim Niamtub";
	item.price =295;
	item.duration="4:29";	
	item.code = 3042;
	item.filename ="Ib_sim_niamtub_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Tsis Muaj Koj";
	item.price =295;
	item.duration="4:37";	
	item.code = 3043;
	item.filename ="Tsis_muaj_koj_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Find My way";
	item.price =295;
	item.duration="4:38";	
	item.code = 3044;
	item.filename ="Find_my_way_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Ib Leej Ntxhais";
	item.price =295;
	item.duration="4:48";	
	item.code = 3045;
	item.filename ="Ib_leej_ntxhais_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Los Cuag Koj";
	item.price =295;
	item.duration="5:07";	
	item.code = 3046;
	item.filename ="Los_cuag_koj_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Tus Kuv Hlub";
	item.price =295;
	item.duration="4:27";	
	item.code = 3047;
	item.filename ="Tus_kuv_hlub_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Txij Hnub No";
	item.price =295;
	item.duration="4:59";	
	item.code = 3048;
	item.filename ="Txij_hnub_no_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
		
	album.songs = array_songs;
	ARRAY_ITEM_DEFN.push(album);
	
	
	// Eau Claire Hmong Alliance Church
	album =	new Object();
	album.name ="Thov Vaajtswv Nrug Koj Moog";
	album.path ="samples/echac/";
	album.img_path ="img/echac1.jpg";
	album.code=3100;
	album.type =ITEM_TYPE__ALBUM_OF_SONGS;
	album.artist ="Eau Claire Hmong Alliance Church";
	album.release ="2010";
	album.w_id ="4823020139250012925";
	album.price =995;
	array_songs = new Array();
	
	item = null;	
	item =new Song();
	item.name ="Thov Vaajtswv Nrug Koj Moog";
	item.price =150;
	item.duration="3:20";	
	item.code = 3101;
	item.filename ="Thov_vaajtswv_nrug_koj_moog_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Kuv Niam Kev Hlub";
	item.price =150;
	item.duration="4:29";	
	item.code = 3102;
	item.filename ="Kuv_niam_kev_hlub_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Free";
	item.price =150;
	item.duration="4:37";	
	item.code = 3103;
	item.filename ="Free_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Tug Vaajtswv Pub";
	item.price =150;
	item.duration="4:38";	
	item.code = 3104;
	item.filename ="Tug_vaajtswv_pub_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Txujkev Nqeg Peev";
	item.price =150;
	item.duration="4:59";	
	item.code = 3105;
	item.filename ="Txujkev_nqeg_peev_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Qhib Koj Lub Qhov Muag";
	item.price =150;
	item.duration="4:48";	
	item.code = 3106;
	item.filename ="Qhib_koj_lub_qhov_muag_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Cale Lug Ntseeg";
	item.price =150;
	item.duration="5:07";	
	item.code = 3107;
	item.filename ="Cale_lug_ntseeg_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Thov Tsis Txhob Nco Kuv";
	item.price =150;
	item.duration="4:27";	
	item.code = 3108;
	item.filename ="Thov_tsis_txhob_nco_kuv_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
		
	album.songs = array_songs;
	ARRAY_ITEM_DEFN.push(album);
	
	
		// Eau Claire Hmong Alliance Church
	album =	new Object();
	album.name ="Thov Vaajtswv Nrug Koj Moog Instrumental";
	album.path ="samples/echac/";
	album.img_path ="";
	album.code=3110;
	album.type =ITEM_TYPE__ALBUM_OF_SONGS;
	album.artist ="Eau Claire Hmong Alliance Church";
	album.release ="2010";
	album.w_id ="4823020139250012925";
	album.price =-1;
	array_songs = new Array();
	
	item = null;	
	item =new Song();
	item.name ="Thov Vaajtswv Nrug Koj Moog";
	item.price =295;
	item.duration="3:20";	
	item.code = 3111;
	item.filename ="Thov_vaajtswv_nrug_koj_moog_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Kuv Niam Kev Hlub";
	item.price =295;
	item.duration="4:29";	
	item.code = 3112;
	item.filename ="Kuv_niam_kev_hlub_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Free";
	item.price =295;
	item.duration="4:37";	
	item.code = 3113;
	item.filename ="Free_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Tug Vaajtswv Pub";
	item.price =295;
	item.duration="4:38";	
	item.code = 3114;
	item.filename ="Tug_vaajtswv_pub_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Txujkev Nqeg Peev";
	item.price =295;
	item.duration="4:59";	
	item.code = 3115;
	item.filename ="Txujkev_nqeg_peev_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Qhib Koj Lub Qhov Muag";
	item.price =295;
	item.duration="4:48";	
	item.code = 3116;
	item.filename ="Qhib_koj_lub_qhov_muag_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Cale Lug Ntseeg";
	item.price =295;
	item.duration="5:07";	
	item.code = 3117;
	item.filename ="Cale_lug_ntseeg_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;	
	item =new Song();
	item.name ="Thov Tsis Txhob Nco Kuv";
	item.price =295;
	item.duration="4:27";	
	item.code = 3118;
	item.filename ="Thov_tsis_txhob_nco_kuv_instrumental_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	album.songs = array_songs;
	ARRAY_ITEM_DEFN.push(album);


		
	album =	new Object();
	album.name ="Still It Continues";
	album.path ="samples/";
	album.img_path ="img/hr_album_art.png";
	album.code=3200;
	album.type =ITEM_TYPE__ALBUM_OF_SONGS;
	album.artist ="Poetic Tone";
	album.release ="";
	album.w_id ="6666313369559748333";
	album.price =-1;
	
	array_songs = new Array();
	item = null;
	
	item =new Song();
	item.name ="It feels like";
	item.price =0;
	item.duration="4:10";	
	item.code = 3201;
	item.filename ="It_Feels_Like_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item =new Song();
	item.name ="Rocket Ship";
	item.price =0;
	item.duration="3:47";	
	item.code = 3202;
	item.filename ="Rocket_Ship_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);

	item =new Song();
	item.name ="Tus Kuv Hlub";
	item.price =0;
	item.duration="2:24";	
	item.code = 3203;
	item.filename ="Tus_Kuv_Hlub_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);

	item =new Song();
	item.name ="You know what";
	item.price =0;
	item.duration="2:53";	
	item.code = 3204;
	item.filename ="You_Know_What_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);

	item =new Song();
	item.name ="Outro: Haters make me famous";
	item.price = 0;
	item.duration="2:39";	
	item.code = 3205;
	item.filename ="Outro_Haters_Make_Me_Famous_sample.mp3";
	item.lyrics ="";
	array_songs.push(item);

	album.songs = array_songs;
	ARRAY_ITEM_DEFN.push(album);



	album =	new Object();
	album.name ="All Inspirational II";
	album.path ="samples/";
	album.img_path ="img/asi-album.jpg";
	album.code=3300;
	album.type =ITEM_TYPE__ALBUM_OF_SONGS;
	album.artist ="All Inspirational";
	album.release ="";
	album.w_id ="4855264772943675542";
	album.price =0;
	
	array_songs = new Array();
	
	item = null;
	item =new Song();
	item.name ="If U Need Somebody";
	item.price =0;
	item.duration="3:16";	
	item.code = 3301;
	item.filename ="If_U_Need_Somebody.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;
	item =new Song();
	item.name ="Kuv Nam Hab Txiv";
	item.price =0;
	item.duration="5:06";	
	item.code = 3302;
	item.filename ="Kuv_Nam_Hab_Txiv.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;
	item =new Song();
	item.name ="Laug Lawm Zuj Zug";
	item.price =0;
	item.duration="3:31";	
	item.code = 3303;
	item.filename ="Laug_Lawm_Zuj_Zug.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;
	item =new Song();
	item.name ="Lub Ntuj Tso Kuv Lug";
	item.price =0;
	item.duration="4:34";	
	item.code = 3304;
	item.filename ="Lub_Ntuj_Tso_Kuv_Lug.mp3";
	item.lyrics ="";
	array_songs.push(item);
	
	item = null;
	item =new Song();
	item.name ="Yog Muaj Ib Nub Twg";
	item.price =0;
	item.duration="4:39";	
	item.code = 3305;
	item.filename ="Yog_Muaj_Ib_Nub_Twg.mp3";
	item.lyrics ="";
	array_songs.push(item);

	album.songs = array_songs;
	ARRAY_ITEM_DEFN.push(album);
}
fnQTShop_InitData();

function fnGetReqParam(param_name)
{
	return fnGetURLParam(window.top.location.search.substring(1), param_name);	
}

function fnGetURLParam ( url_str, param_name )
{
	if (!fnDoesStrHaveValue(param_name))
	       return "";
	param_name = param_name + "=";
	if ( url_str.length <= 0 )
		return "";	
	// Find the beginning of the string
	var at_start = url_str.indexOf ( param_name );
	// If the parameter name is not found, skip it, otherwise return the value
	if ( at_start == -1 )
		return "";
	
	// Add the length (integer) to the beginning
	at_start += param_name.length;
	// Multiple parameters are separated by the "&" sign
	at_end = url_str.indexOf ( "&" , at_start );
	if ( at_end == -1 ) 
		at_end = url_str.length;

	var str_out =unescape ( url_str.substring ( at_start, at_end ) );
	str_out = str_out.replace("+"," ");
	return str_out;
   
}

function fnGenHeader()
{
	var str_out ="";
	str_out += "<tr>";
	str_out += 	"<td class='style_header'>";
	str_out += 	"</td>";
	str_out += "</tr>";
	document.write(str_out);
}

function fnGenHTHeader()
{
	var str_out ="";
	str_out += "<div style='width:100%; left: 0px; font: 12px Tahoma; color: #ffffff; position: fixed; z-index: 1000; background: #5f5f5f; border-top : 1px solid #5f5f5f; border-bottom: 1px solid #5f5f5f; height: 23px; top:0px; padding-top: 3px;'>";
 	str_out += 	"<div style='width: 900px;'>"; 	//
	str_out += 		"<span>";
	str_out += 			"<span style='position: absolute; cursor:pointer;' onclick='document.location=\"http://www.HmongTunes.com\";'><img src='../HmongTunes/img/home.png' height='17' /></span>";
	str_out += 			"<span class='ht_header_home' style='margin-left: 24px' onclick='document.location=\"http://www.HmongTunes.com\";'>HmongTunes</span>";
	str_out += 		"</span>";
	str_out += 		"<span>";
	str_out += 			"<span onclick='fnQT_GotoCart();return false;' style='cursor:pointer;position: absolute;'><img src='shopping_cart.png' /></span>";
	str_out += 			"<span onclick='fnQT_GotoCart();return false;' id='span_shopping_cart_num_items' style='cursor:pointer; padding: 0px 10px 0px 24px;'></span>";
	str_out += 		"</span>";
	str_out += 	"</div>";
	str_out += "</div>";
	document.write(str_out);
}

function fnGenHTHeader2()
{
	var str_out ="";
	
	str_out += "<div class='style_user_header'>";
	//			Welcome Ned!
	str_out += 	"<span style='position: absolute;'><img src='shopping_cart.png' /></span>";
	str_out += 	"<span id='span_shopping_cart_num_items' style='padding: 0px 10px 0px 24px;'></span>";
	str_out += "</div>";	
	document.write(str_out);
}

function fnSetLoginCookieFromReq()
{
	var qt_name =fnGetReqParam("qtname");
	if (fnDoesStrHaveValue(qt_name))
		fnQT_SetCookie("QTName", qt_name);
	var  qt_username =fnGetReqParam("qtusername");
	if (fnDoesStrHaveValue(qt_username))
		fnQT_SetCookie("QTUsername",qt_username);
}

function fnDiffSignIn()
{
	fnQT_SetCookie("QTName", "");
	fnQT_SetCookie("QTUsername","");
	document.location ="http://www.HmongTunes.com/HmongTunes/jsignin.jsp";
}

function fnSignOut()
{
	fnQT_SetCookie("QTName", "");
	fnQT_SetCookie("QTUsername","");
	fnQTUpdateNumItems();
    var elem = document.getElementById("form_signout");
	elem.submit();
}

function fnGenHTTopBar()
{
	fnSetLoginCookieFromReq();
	var str_out ="";
	str_out += "<form name='form_signout' id='form_signout' method='post' action='https://www.Quasitime.com:8443/tdt/extSignOut.do?' style='padding:0px;margin:0px;'><input type='hidden' id='input_ret_url' name='519' value='http://www.HmongTunes.com' /></form>";
	str_out += "<div id='div_ht_hdr'>";
	var str_name =fnQT_GetCookie("QTName");
	str_out += 	"<span style='margin-left:5px;'>";	
	if (fnDoesStrHaveValue(str_name))
	{
		str_out +=	"Welcome ";
		str_out +=	str_name;
		str_out +=	". Not you? <a href='#' onclick='fnDiffSignIn();' class='light_link'>Click here</a> to sign in. <a href='#' onclick='fnSignOut(); return false;' class='light_link' target='form_signout'> Sign Out</a>";
	}
	else
	{
		str_out +=	"<a href='http://www.HmongTunes.com/HmongTunes/jsignin.jsp' class='light_link'>Sign in</a>";	
	}
	str_out += 	"</span>";
	str_out += 	"<span style='position:absolute; right: 0px;'>";
	str_out += 		"<span onclick='fnQT_GotoCart();return false;' style='cursor:pointer;position: absolute;'><img src='../HmongTunes/img/shopping_cart.png' /></span>";
	str_out += 		"<span onclick='fnQT_GotoCart();return false;' id='span_shopping_cart_num_items' style='cursor:pointer; padding: 0px 10px 0px 24px;'></span>";
	str_out += 	"</span>";
	str_out += "</div>";
	document.write(str_out);
}

function fnQTEmptyCart()
{
	fnQTUpdateNumItems();
}

function fnQTAddToCart(code)
{
	if (!fnDoesStrHaveValue(code))
		return;
		
	// check for existence of code in cart
	var temp_items =fnQT_GetCookie("QT_SHOPPING_ITEMS");
	var temp_items_searchable ="," +temp_items;
	var where =temp_items_searchable.indexOf("," +code +",");
	if (where==-1)
		temp_items += code +",";
	fnQT_SetCookie("QT_SHOPPING_ITEMS", temp_items);	
	fnQTUpdateNumItems();
	
	elem = document.getElementById("span_add_to_cart_" +code);
	if (elem)
		elem.innerHTML = "<a onclick='fnQT_GotoCart();return false;' href='#' class='qt_link'>Checkout</a>";
}
function fnQTUpdateNumItems()
{
	var i=0;
	var num_items=0;
	var temp_items =fnQT_GetCookie("QT_SHOPPING_ITEMS");
	if (fnDoesStrHaveValue(temp_items))
	{
		var items =temp_items.split(",");
		num_items=items.length-1;
		if (num_items<0)
			num_items=0;
	}
	var str_out ="<span>Your shopping cart is empty</span>";
	if (num_items)
		str_out ="<span>You have " +num_items +" items in your shopping cart.</span> &nbsp;&nbsp;&nbsp;&nbsp; <a onclick='fnQT_GotoCart();return false;' href='#' class='light_link'>Checkout</a>";
	var elem =document.getElementById("span_shopping_cart_num_items");
	if (elem)
		elem.innerHTML =str_out;
}

function fnQT_GotoCart()
{
	document.location ="../HmongTunes/shopping_cart.jsp";
}
function fnQTStoreInit(my_w_id)
{
	fnGeneralInit();
	fnQT_GenStoreItems(my_w_id);
}

function fnGeneralInit()
{
	fnQTUpdateNumItems();
}

function fnQT_GenCart()
{
	var str_out ="";
	var i=0;
	var j=0;
	var num_items =ARRAY_ITEM_DEFN.length;
	var total =0;
	var row_count=0;
	var temp_items ="," +fnQT_GetCookie("QT_SHOPPING_ITEMS");
		
	str_out +="<table class='style_table_shop' cellspacing='0' cellpadding='7'>";
	str_out += "<tr>";
	str_out += 	"<th style='padding-left: 20px;'><span class='style_opaque'>Title</span></th>";	
	str_out += 	"<th><span class='style_opaque'>Artist</span></th>";									
	str_out += 	"<th>Price</th>";                  	
	str_out += "</tr>";					
	for (i=0; i<num_items; i++)
	{
		var item =ARRAY_ITEM_DEFN[i];
		switch (item.type)
		{
			case ITEM_TYPE__ALBUM_OF_SONGS:
				{
					var album =item;
					if (album.price>=0 && fnDoesStrHaveValue(temp_items))
					{
						var match =temp_items.indexOf("," +album.code +",");
						if (match>=0)
						{
							row_count++;
							var name ="Album: ";
							if (fnDoesStrHaveValue(album.name))
								 name += album.name;
							if (row_count%2==0)
								str_out += "<tr class='style_table_shop_row_odd'>";
							else
								str_out += "<tr class='style_table_shop_row_even'>";
								
							str_out += 	"<td style='padding-left: 20px;'><b>" +name +"</b></td>";	
							str_out += 	"<td>" +album.artist +"</td>";									
							str_out += 	"<td>" +fnCents2Display2(album.price) +"</td>"; 
							str_out += "</tr>";	
							total += album.price;
						}
					}
					
					
					
					var songs =album.songs; 
					var num_songs = songs.length;
					for (j=0; j<num_songs; j++)
					{
						var song =songs[j];
						if (fnDoesStrHaveValue(temp_items))
						{
							var match =temp_items.indexOf("," +song.code +",");
							if (match>=0)
							{
								row_count++;
								var name ="";
								if (fnDoesStrHaveValue(album.name))
									 name += album.name +" : ";
								name += song.name;
								if (row_count%2==0)
									str_out += "<tr class='style_table_shop_row_odd'>";
								else
									str_out += "<tr class='style_table_shop_row_even'>";
									
								str_out += 	"<td style='padding-left: 20px;'>" +name +"</td>";	
								str_out += 	"<td>" +album.artist +"</td>";									
								str_out += 	"<td>" +fnCents2Display2(song.price) +"</td>"; 
								str_out += "</tr>";	
								total += song.price;
							}
						}
					}	
				}
				break;
		}				
	}
	str_out +="<tr class='style_table_shop_row_footer'>";
	str_out += "<td class='style_table_shop_row_footer' style='padding-left: 20px;'><b>Total</b></td>";
	str_out += "<td></td>";
	str_out += "<td><b>";
	str_out +=fnCents2Display2(total);
	str_out += "</b></td>";
	str_out +="</tr>";
	str_out +="</table>";
	var elem = document.getElementById("div_qt_shopping_cart");
	if (elem)
		elem.innerHTML = str_out;
}

function fnSigninInit()
{
	var str_username = fnQT_GetCookie("QTUsername");
	fnSetElemValue("qtshop_input_username",str_username);
}

function fnQT_CartInit()
{
	fnQT_GenCart();
}

function fnQT_EmptyCart()
{
	fnQT_SetCookie("QT_SHOPPING_ITEMS","");
	fnQT_GenCart();
}

function fnQT_GenAlbumTable(album_title, album_img, album_path)
{
}

function fnQT_ShopPaymentInit()
{
	fnQT_SetCookie("QTUsername",fnGetElemValue("input_qt_ext_username"));
	fnQT_SetCookie("QTName",fnGetElemValue("input_qt_ext_name"));
}

function fnQT_InitShopOrderComplete()
{
	fnQT_SetCookie("QT_SHOPPING_ITEMS","");
}

function fnQT_ShopConfirmInit()
{
	var temp_items =fnQT_GetCookie("QT_SHOPPING_ITEMS");
	fnQT_GenConfirmOrder();
	fnSetElemValue("input_items", temp_items); 
	fnSetElemValue("input_w_id", g_w_id);
}

function fnQT_Signin_Init()
{
	/*
	var str_result ="";
	switch (g_signin_return)
	{
		case STATUS_INVALID_USERNAME_OR_PASSWORD:
			str_result = "User not found.  If you may have mistyped your username or password, please try again.  You can select 'new user' to sign in as a new user and create an account.";
			break;
		
		case STATUS_UNEXPECTED_ERROR:
			str_result = "Sorry, we had some trouble processing that request.  Please try again.";
			break;	
	}
	fnSetInnerhtml("div_signin_result",str_result);
	*/
}

function fnPayment_Next()
{
	var str_temp="";
	var str_v_msg ="";
	var b_valid =1;
	
	fnSetInnerhtml("div_validation_msgs", "");

	fnChangeClass("span_order_label_name", "style_black");
	fnChangeClass("span_order_label_email", "style_black");
	fnChangeClass("span_order_label_address", "style_black");
	fnChangeClass("span_order_label_city", "style_black");
	fnChangeClass("span_order_label_state", "style_black");
	fnChangeClass("span_order_label_zip", "style_black");
	fnChangeClass("span_cc_num", "style_black");
	fnChangeClass("span_cc_ccv", "style_black");
	fnChangeClass("span_cc_type", "style_black");
	fnChangeClass("span_cc_person_name", "style_black");
	fnChangeClass("span_cc_exp_date", "style_black");
	
	str_temp =fnGetElemValue("input_name");
	if (!fnDoesStrHaveValue(str_temp))
	{
		str_v_msg +="<div style='color:#9f0000;'>Please enter a name.</div>";
		fnChangeClass("span_order_label_name", "style_red");
		b_valid =0;
	}
	str_temp =fnGetElemValue("input_email");
	if (!fnDoesStrHaveValue(str_temp))
	{
		str_v_msg +="<div style='color:#9f0000;'>Please enter an email.</div>";
		fnChangeClass("span_order_label_email", "style_red");
		b_valid =0;
	}
	str_temp =fnGetElemValue("input_address");
	if (!fnDoesStrHaveValue(str_temp))
	{
		str_v_msg +="<div style='color:#9f0000;'>Please enter an address.</div>";
		fnChangeClass("span_order_label_address", "style_red");
		b_valid =0;
	}
	str_temp =fnGetElemValue("input_city");
	if (!fnDoesStrHaveValue(str_temp))
	{
		str_v_msg +="<div style='color:#9f0000;'>Please enter a city.</div>";
		fnChangeClass("span_order_label_city", "style_red");
		b_valid =0;
	}
	str_temp =fnGetElemValue("input_state");
	if (!fnDoesStrHaveValue(str_temp))
	{
		str_v_msg +="<div style='color:#9f0000;'>Please enter the state.</div>";
		fnChangeClass("span_order_label_state", "style_red");
		b_valid =0;
	}
	str_temp =fnGetElemValue("input_zip");
	if (!fnDoesStrHaveValue(str_temp))
	{
		str_v_msg +="<div style='color:#9f0000;'>Please enter a zip code.</div>";
		fnChangeClass("span_order_label_zip", "style_red");
		b_valid =0;
	}
	str_temp =fnGetElemValue("input_cc_num");
	if (!fnDoesStrHaveValue(str_temp))
	{
		str_v_msg +="<div style='color:#9f0000;'>Please enter a credit card number.</div>";
		fnChangeClass("span_cc_num", "style_red");
		b_valid =0;
	}
	str_temp =fnGetElemValue("input_cc_ccv");
	if (!fnDoesStrHaveValue(str_temp))
	{
		str_v_msg +="<div style='color:#9f0000;'>Please enter your CCV number.</div>";
		fnChangeClass("span_cc_ccv", "style_red");
		b_valid =0;
	}
	str_temp =fnGetElemValue("select_cc_type");
	if (!str_temp || str_temp=="-1")
	{
		str_v_msg +="<div style='color:#9f0000;'>Please select the credit card type.</div>";
		fnChangeClass("span_cc_type", "style_red");
		b_valid =0;
	}
	str_temp =fnGetElemValue("input_cc_person_name");
	if (!fnDoesStrHaveValue(str_temp))
	{
		str_v_msg +="<div style='color:#9f0000;'>Please enter your name as it appears on the credit card.</div>";
		fnChangeClass("span_cc_person_name", "style_red");
		b_valid =0;
	}
	str_temp =fnGetElemValue("select_cc_expiration_date_month");
	if (!str_temp || str_temp=="0")
	{
		str_v_msg +="<div style='color:#9f0000;'>Please select the credit card expiration month.</div>";
		fnChangeClass("span_cc_exp_date", "style_red");
		b_valid =0;
	}	
	str_temp =fnGetElemValue("select_cc_expiration_date_year");
	if (!str_temp || str_temp=="0")
	{
		str_v_msg +="<div style='color:#9f0000;'>Please select the credit card expiration year.</div>";
		fnChangeClass("span_cc_exp_date", "style_red");
		b_valid =0;
	}
	
	if (!b_valid)
	{
		fnSetInnerhtml("div_validation_msgs", str_v_msg);
		return;
	}
	
	var elem =document.getElementById("qt_ext_payment_form");
	if (elem)
	{
		elem.submit();
	}
}

function fnConfirm_Complete()
{
	var elem =document.getElementById("qt_ext_confirm_form");
	if (elem)
	{
		elem.submit();
	}
}

function fnQT_Signin_Next(link_mode)
{
	fnSetInnerhtml("div_signin_result","");
	if (fnQT_GetChecked("qtshop_customer_0"))
		document.location="http://www.HmongTunes.com/HmongTunes/signup.jsp";
	else if (fnQT_GetChecked("qtshop_customer_1"))
	{
		fnQT_JSignin_Next(link_mode);
	}
	else
		fnSetInnerhtml("div_signin_result","<div style='color:#af1010;'>Please select from the options above.</div>");		
}

function fnQT_JSignin_Next(link_mode)
{
	fnSetInnerhtml("div_signin_result","");
	var str_temp =fnGetElemValue("qtshop_input_username");
	if (!fnDoesStrHaveValue(str_temp))
	{
		fnSetInnerhtml("div_signin_result","<div style='color:#af1010;'>Please enter a username</div>");		
		return;
	}
	str_temp =fnGetElemValue("qtshop_input_password");
	if (!fnDoesStrHaveValue(str_temp))
	{
		fnSetInnerhtml("div_signin_result","<div style='color:#af1010;'>Please enter a password</div>");		
		return;
	}
	if (link_mode)
	{
		var temp_items =fnQT_GetCookie("QT_SHOPPING_ITEMS");
		if (fnGetTotalPrice()>0 && temp_items!=null && temp_items.length>0)
		{
			fnSetElemValue("qtshop_input_include_links","0");
		}
		else
		{
			fnSetElemValue("qtshop_input_include_links","1");
			fnSetElemValue("input_items", temp_items); 
		}
	}
	var elem =document.getElementById("qt_login_form");
	if (elem)
	{
		elem.submit();
		return;
	}
}

function fnQT_Signup_Next(link_mode)
{
	// validate first
	if (!fnDoesStrHaveValue(fnGetElemValue("input_name")))
	{
		fnSetInnerhtml("div_validation_msgs", "<span style='color:#9f0000;'>Please enter a name.</span>");
		return;
	}	
	else if (!fnDoesStrHaveValue(fnGetElemValue("input_username")))	
	{
		fnSetInnerhtml("div_validation_msgs", "<span style='color:#9f0000;'>Please enter a username.</span>");
		return;
	}	
	else if (!fnDoesStrHaveValue(fnGetElemValue("input_password")))	
	{
		fnSetInnerhtml("div_validation_msgs", "<span style='color:#9f0000;'>Please enter a password.</span>");
		return;
	}	
	else if (fnGetElemValue("input_password")!=fnGetElemValue("input_confirm_password"))	
	{
		fnSetInnerhtml("div_validation_msgs", "<span style='color:#9f0000;'>The value in 'Confirm password' must be the same as the 'Password' field.</span>");
		return;
	}	
	else if (fnGetElemValue("input_password").length<6)	
	{
		fnSetInnerhtml("div_validation_msgs", "<span style='color:#9f0000;'>Minimum password length is 6 characters.</span>");
		return;
	}	
	else if (!fnDoesStrHaveValue(fnGetElemValue("input_email")))	
	{
		fnSetInnerhtml("div_validation_msgs", "<span style='color:#9f0000;'>Please enter an email address.</span>");
		return;
	}	
	else if (fnGetElemValue("input_email")!=fnGetElemValue("input_confirm_email"))	
	{
		fnSetInnerhtml("div_validation_msgs", "<span style='color:#9f0000;'>The value in 'Confirm email' must be the same as the 'Email' field.</span>");
		return;
	}	
	else if (!fnDoesStrHaveValue(fnGetElemValue("input_zipcode")))	
	{
		fnSetInnerhtml("div_validation_msgs", "<span style='color:#9f0000;'>Please enter a zip code.</span>");
		return;
	}	
	else if (!fnGetChecked("checkbox_reg_terms"))
	{
		fnSetInnerhtml("div_validation_msgs", "<span style='color:#9f0000;'>You will need to agree to the terms of service for a free Quasitime account in order to proceed.</span>");
		return;
	}
	if (link_mode)
	{
		var temp_items =fnQT_GetCookie("QT_SHOPPING_ITEMS");
		if (fnGetTotalPrice()>0 && temp_items!=null && temp_items.length>0)
		{
			fnSetElemValue("qtshop_input_include_links","0");
		}
		else
		{
			fnSetElemValue("qtshop_input_include_links","1");
			fnSetElemValue("input_items", temp_items); 
		}
	}
	var elem_form =document.getElementById("qt_ext_signup_form");
	if (elem_form)
	{
		elem_form.submit();
	}
}

function fnShoppingCart_Next()
{
	var temp_items =fnQT_GetCookie("QT_SHOPPING_ITEMS");
	if (!fnDoesStrHaveValue(temp_items))
	{
		fnSetInnerhtml("div_cart_result","<div style='color:#af1010;'>Click &lt;Back&gt; to add some items to your cart before continuing.</div>");		
		return;
	}
	document.location = "http://www.HmongTunes.com/HmongTunes/signin.jsp";
	/*
	var elem =document.getElementById("qt_cart_form");
	if (elem)
	{
		elem.submit();
		return;
	}
	*/
}

function fnQT_GenConfirmOrder()
{
	var str_out ="";
	var i=0;
	var j=0;
	var num_items =ARRAY_ITEM_DEFN.length;
	var total =0;
	var temp_items ="," +fnQT_GetCookie("QT_SHOPPING_ITEMS");
		
	str_out +="<table class='style_table_clear' style='width:100%;'>";
	str_out += "<tr style='border-bottom:1px solid #202020;'>";
	str_out += 	"<td>Title</td>";	
	str_out += 	"<td>Artist</td>";									
	str_out += 	"<td>Price</td>";                  	
	str_out += "</tr>";	
	str_out += "<tr>";
	str_out += 	"<td>&nbsp;</td>";	
	str_out += 	"<td></td>";									
	str_out += 	"<td></td>";                  	
	str_out += "</tr>";					
	for (i=0; i<num_items; i++)
	{
		var item =ARRAY_ITEM_DEFN[i];
		switch (item.type)
		{
			case ITEM_TYPE__ALBUM_OF_SONGS:
				{
					var album =item;					
					var match =temp_items.indexOf("," +album.code +",");
					if ((match>=0) && fnDoesStrHaveValue(album.price) && album.price>=0)
					{
						var name ="Album: ";
						if (fnDoesStrHaveValue(album.name))
							 name += album.name;
						str_out += "<tr>";
						str_out += 	"<td>" +name +"</td>";	
						str_out += 	"<td>" +album.artist +"</td>";	
						str_out += 	"<td>" +fnCents2Display2(album.price) +"</td>"; 
						str_out += "</tr>";	
						total += album.price;
					}
					
					var songs =album.songs; 
					var num_songs = songs.length;
					for (j=0; j<num_songs; j++)
					{	
						var song =songs[j];
						if (fnDoesStrHaveValue(temp_items))
						{
							var match =temp_items.indexOf("," +song.code +",");
							if (match>=0)
							{
								var song_path =album.path +"track" +(j+1) +".mp3";
								var name ="";
								if (fnDoesStrHaveValue(album.name))
									 name += album.name +":";
								name += song.name;			        	
								str_out += "<tr>";
								str_out += 	"<td>" +name +"</td>";	
								//str_out += 	"<td>" +song.duration +"</td>";
								str_out += 	"<td>" +album.artist +"</td>";	
								str_out += 	"<td>" +fnCents2Display2(song.price) +"</td>"; 
								str_out += "</tr>";	
								total += song.price;
							}
						}
					}	
				}
				break;
		}				
	}
	str_out +="<tr>";
	str_out += "<td><br /><b>Total</b></td>";
	str_out += "<td><br /></td>";
	str_out += "<td><br /><b>";
	str_out +=fnCents2Display2(total);
	str_out += "</b></td>";
	str_out +="</tr>";
	str_out +="</table>";
	str_out +="<br /><br />Upon clicking &lt;Complete Order&gt;, amount of " +fnCents2Display2(total) +" will be charged to your credit card, and you will be able to download purchased songs as .mp3 files.";
	
	var elem = document.getElementById("div_qt_order_conf");
	if (elem)
		elem.innerHTML = str_out;
}


function fnQT_GenStoreItems(my_w_id)
{
	var str_out ="";
	var i=0;
	var j=0;
	var num_items =ARRAY_ITEM_DEFN.length;
	var temp_items ="," +fnQT_GetCookie("QT_SHOPPING_ITEMS");
	
	for (i=0; i<num_items; i++)
	{
		var item =ARRAY_ITEM_DEFN[i];
		switch (item.type)
		{
			case ITEM_TYPE__ALBUM_OF_SONGS:
				{
					var album =item;
					if (album.w_id==my_w_id)
					{
						str_out +="<table class='style_table_clear' cellspacing='10' style='margin-bottom:20px;'>";
						str_out += "<tr>";
						str_out +=	 "<td style='vertical-align:top; width:240px;'>";
						str_out +=		"<div class='style_album_title'>";
						str_out +=			album.name;
						str_out +=		"</div>";
						if (fnDoesStrHaveValue(album.img_path))
						{
							str_out +=		"<div>";
							str_out +=			"<img src='";
							str_out +=				album.img_path;		
							str_out +=			"' width='200px' height='200px' alt='' class='style_qt_shadow' />";
							str_out +=		"</div>";
						}
						if (fnDoesStrHaveValue(album.release))
						{
							str_out +=		"<div style='font-size:12px; position:relative; top:4px;'>";
							str_out +=			"Released ";
							str_out +=			album.release;
							str_out +=		"</div>";
						}
						if (fnDoesStrHaveValue(album.price) && album.price>=0)
						{
							str_out +=		"<div style='font-size:11px; position:relative; top:4px;'>";
							str_out +=			"<table class='style_table_clear' cellspacing=0 cellpadding=0 >";
							str_out +=				"<tr>";
							str_out +=					"<td>Album:</td>";
							str_out +=					"<td>";
							if (album.price==0)
								str_out +=					"Free";
							else								
								str_out +=					fnCents2Display2(album.price);
							str_out +=					"</td>";
							str_out +=					"<td>";
							var where =temp_items.indexOf("," +album.code +",");
							if (where>=0)						
								str_out +=			"<a onclick='fnQT_GotoCart();return false;' href='#' class='qt_link'>Checkout</a>";
							else						
								str_out += 			"<span id='span_add_to_cart_" +album.code +"'><a href='#' onclick='fnQTAddToCart(" +album.code +");return false;' class='qt_link'>Add to cart</a></span>";												
							str_out +=					"</td>";
							str_out +=				"</tr>";
							str_out +=			"</table>";
							str_out +=		"</div>";
						}
						str_out +=	 "</td>";
						str_out +=	 "<td style='vertical-align:top; width:496px;'>";	//440px
						str_out +=		"<table class='table.style_table_shop' cellspacing='0' cellpadding='6' rules='rows'>";
						str_out +=			"<tr class='style_table_shop_header_row'>";
						str_out +=				"<td class='style_col_ordinal'></td>";
						str_out +=				"<td class='style_col_name'>Name</td>";							        
						str_out +=				"<td class='style_col_sample'>Sample</td>";							        
						str_out +=				"<td class='style_col_time'>Time</td>";
						str_out +=				"<td class='style_col_price_hdr'>Price</td>";		
						str_out +=				"<td class='style_col_action_hdr'></td>";					    
						str_out +=			"</tr>";
						
						var songs =album.songs; 
						var num_songs = songs.length;
						for (j=0; j<num_songs; j++)
						{
							var song =songs[j];
							var song_path =BASE_PATH_MUSIC +g_w_id +"/samples/" +song.filename;
							str_out += 		"<tr class='style_table_shop_row'>";
							str_out += 			"<td class='style_col_ordinal'>" +(j+1) +".</td>"; // valign='top'
							str_out += 			"<td class='style_col_name'>" +song.name;
							if (fnDoesStrHaveValue(song.lyrics))
								str_out +=					"<br><a href='lyrics/" +song.lyrics +"' target='_new''>lyrics</a>";
							str_out +=			"</td>";
							str_out += 			"<td class='style_col_sample'>";
	/*						
							str_out += 				"<OBJECT CLASSID='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' CODEBASE='http://www.apple.com/qtactivex/qtplugin.cab' HEIGHT=20 WIDTH=20>";
							str_out += 					"<PARAM NAME='src' VALUE='" +song_path +"' > <PARAM NAME='CONTROLLER' VALUE='False' > <PARAM NAME='AutoPlay' VALUE='False' > <PARAM NAME='Loop' VALUE='False' >";
							str_out += 					"<PARAM NAME='HREF' VALUE='URL' > <PARAM NAME='TARGET' VALUE='myself' >";
							str_out += 					"<EMBED SRC='" +song_path + "' HEIGHT=20 WIDTH=20 TYPE='video/quicktime' PLUGINSPAGE='http://www.apple.com/quicktime/download/' CONTROLLER='False'";
							str_out += 					"AUTOPLAY='False' LOOP='False' HREF='URL' TARGET='myself' />";
							str_out += 				"</OBJECT>";
	*/
							str_out += 				"<object type='application/x-shockwave-flash' data='../HmongTunes/audio/player.swf' id='audioplayer" +i +"_" +j +"' height='24' width='80'>";
							str_out += 					"<param name='movie' value='../HmongTunes/audio/player.swf'>";
							str_out += 					"<param name='FlashVars' value='playerID=audioplayer" +i +"_" +j +"&soundFile=" +song_path +"'>";
							str_out += 					"<param name='quality' value='high'>";
							str_out += 					"<param name='menu' value='false'>";
							str_out += 					"<param name='wmode' value='transparent'>";
							str_out += 					"<param name='noinfo' value='yes'>";
							str_out += 					"<param name='width' value='80'>";
							str_out += 				"</object>"; 
							str_out += 			"</td>";	
							str_out += 			"<td class='style_col_time'>" +song.duration +"</td>";									
							str_out += 			"<td class='style_col_price'>";
							if (song.price==0)
								str_out +=			"Free";
							else								
								str_out += 			fnCents2Display2(song.price);
							str_out += 			"</td>";    
							str_out += 			"<td class='style_col_action'>";
							var where =temp_items.indexOf("," +song.code +",");
							if (where>=0)						
								str_out +=			"<a onclick='fnQT_GotoCart();return false;' href='#' class='qt_link'>Checkout</a>";
							else						
								str_out += 			"<span id='span_add_to_cart_" +song.code +"'><a href='#' onclick='fnQTAddToCart(" +song.code +");return false;' class='qt_link'>Add to cart</a></span>";												
							str_out += 			"</td>";                	
							str_out += 		"</tr>";	
						}	
						str_out +=		"</table>";
						str_out +=	 "</td>";		
						str_out += "</tr>";							
						str_out +="</table>";
					}
				}
				break;
		}
				
	}
	var elem = document.getElementById("div_qtshop_store_items");
	if (elem)
		elem.innerHTML = str_out;
}

function fnGenFooter()
{
	var str_out ="";
	str_out += "<div id='div_footer'>";
	str_out += 	"<a class='subtle_link' href='../HmongTunes/terms.htm'>Terms of Service</a> - <a class='subtle_link' href='../HmongTunes/privacy.htm'>Privacy Policy</a><br />";
	str_out += 	"Copyright 2010 HmongTunes. All rights reserved.<br />";
	str_out += 	"Powered by <a class='link_for_shadybg' href='http://www.Quasitime.com'>Quasitime</a>";
	str_out += "</div>";
	document.writeln(str_out);
}

function fnGenFooter4(bdark)
{
	var str_mod ="";
	if (bdark)
		str_mod="_dark";
	else
		str_mod="_light";
	var str_out ="";
	str_out += "<div class='style_footer" +str_mod +"'>";

	str_out += "</div>";
	document.writeln(str_out);
}

function fnGetTotalPrice()
{
	var i=0;
	var j=0;
	var num_items =ARRAY_ITEM_DEFN.length;
	var total =0;
	var temp_items ="," +fnQT_GetCookie("QT_SHOPPING_ITEMS");
		
	for (i=0; i<num_items; i++)
	{
		var item =ARRAY_ITEM_DEFN[i];
		switch (item.type)
		{
			case ITEM_TYPE__ALBUM_OF_SONGS:
				{
					var album =item;					
					var match =temp_items.indexOf("," +album.code +",");
					if ((match>=0) && fnDoesStrHaveValue(album.price) && album.price>=0)
						total += album.price;
					
					var songs =album.songs; 
					var num_songs = songs.length;
					for (j=0; j<num_songs; j++)
					{	
						var song =songs[j];
						if (fnDoesStrHaveValue(temp_items))
						{
							var match =temp_items.indexOf("," +song.code +",");
							if (match>=0)
								total += song.price;
						}
					}	
				}
				break;
		}				
	}
	return total;
}




//[
function MyAcct()
{
	this.purchases =null;
	this.list_table =null;
}

function MyAcct_Load()
{
	with (this)
	{
		Reload();
	}
}
MyAcct.prototype.Load =MyAcct_Load;

function MyAcct_Reload()
{
	with (this)
	{
		
	}
}
MyAcct.prototype.Reload =MyAcct_Reload;


//]


// Instance variables
var g_signin_return =0;

