 			var pageButtonContent = { 
				"buttonList": [ 
					{	"btnTitle" : "Chat",
						"localizedText" : "Chat",
						"btnWidth" : "92",
						"btnStatus" : "off",
						"onClickCommand" : "window.location='chat.html';",
						"mouseover" : "document.getElementById('local_Chat').style.color='#d69f0a';",
						"mouseout" : "document.getElementById('local_Chat').style.color='#666666';"
					},
					{	"btnTitle" : "Browse",
						"localizedText" : "Navegar",
						"btnWidth" : "119",
						"btnStatus" : "off",
						"onClickCommand" : "window.location='browse.html';",
						"mouseover" : "document.getElementById('local_Browse').style.color='#d69f0a';",
						"mouseout" : "document.getElementById('local_Browse').style.color='#666666';"
					},
					{	"btnTitle" : "Organize",
						"localizedText" : "Organizar",
						"btnWidth" : "126",
						"btnStatus" : "off",
						"onClickCommand" : "window.location='organize.html';",
						"mouseover" : "document.getElementById('local_Organize').style.color='#d69f0a';",
						"mouseout" : "document.getElementById('local_Organize').style.color='#666666';"
					},
					{	"btnTitle" : "Play",
						"localizedText" : "Multimedia",
						"btnWidth" : "133",
						"btnStatus" : "off",
						"onClickCommand" : "window.location='play.html';",
						"mouseover" : "document.getElementById('local_Play').style.color='#d69f0a';",
						"mouseout" : "document.getElementById('local_Play').style.color='#666666';"
					},
					{	"btnTitle" : "Gallery",
						"localizedText" : "Galer&iacute;a",
						"btnWidth" : "108",
						"btnStatus" : "off",
						"onClickCommand" : "window.location='gallery.html';",
						"mouseover" : "document.getElementById('local_Gallery').style.color='#d69f0a';",
						"mouseout" : "document.getElementById('local_Gallery').style.color='#666666';"
					},
					{	"btnTitle" : "Specs",
						"localizedText" : "Datos",
						"btnWidth" : "105",
						"btnStatus" : "off",
						"onClickCommand" : "window.location='specs.html';",
						"mouseover" : "document.getElementById('local_Specs').style.color='#d69f0a';",
						"mouseout" : "document.getElementById('local_Specs').style.color='#666666';"
					}
				],
				"displayButtons" : function() {
                    var iOut=0 ;
					var outputX=164; //location of div
					var btnObject = this.buttonList ; //get data from JS object
					
                    for(iOut=0; iOut < btnObject.length; iOut++ ) {
						if(btnObject[iOut].btnTitle != "Specs" ){
							htmlOutput = "" ;
							htmlOutput += "<div id=\"btn_" + btnObject[iOut].btnTitle + "\" class=\"button_wrapper\" style=\"left:" + outputX + "px; top:" + "393px;\" onmouseover=\"" + btnObject[iOut].mouseover + "\" onmouseout=\"" + btnObject[iOut].mouseout + "\" onclick=\"" + btnObject[iOut].onClickCommand + "\">\n" ;
							htmlOutput += "<div id=\"btn_left\" class=\"btn_left_" + btnObject[iOut].btnStatus + "\">" ;
							htmlOutput += "</div>" ;
							htmlOutput += "<div id=\"btn_center_" + btnObject[iOut].btnTitle + "\" class=\"btn_center btn_center_" + btnObject[iOut].btnStatus + "\" style=\"text-align:center; width:" + btnObject[iOut].btnWidth +"px;\">" ;
							htmlOutput += "<div id=\"local_" + btnObject[iOut].btnTitle + "\" class=\"btn_link\">" + btnObject[iOut].localizedText + "</div>" ;
							outputX += Number(btnObject[iOut].btnWidth) + Number(6);
							htmlOutput += "</div><div id=\"btn_right\" class=\"btn_right_" + btnObject[iOut].btnStatus + "\" style=\"left:" + String(Number(btnObject[iOut].btnWidth) + 6) + "px;\"></div></div>" ;
							outputX += Number(5);
							document.write(htmlOutput) ;
							//console.log(htmlOutput);
						} else {
							htmlOutput = ""
							htmlOutput += "<div id=\"btn_" + btnObject[iOut].btnTitle + "\" class=\"button_wrapper\" style=\"left:" + outputX + "px; top:" + "393px;\" onmouseover=\"" + btnObject[iOut].mouseover + "\" onmouseout=\"" + btnObject[iOut].mouseout + "\" onclick=\"" + btnObject[iOut].onClickCommand + "\" style=\"background:transparent;\">\n" ;
							htmlOutput += "<div id=\"btn_center_" + btnObject[iOut].btnTitle + "\" class=\"\" style=\"background:transparent;text-align:center;width:" + btnObject[iOut].btnWidth +"px;\">" ;
							htmlOutput += "<div id=\"local_" + btnObject[iOut].btnTitle + "\" class=\"btn_link\"><span id=\"buy_button_text\">" + btnObject[iOut].localizedText + "</span></div></div></div>" ;
							document.write(htmlOutput) ;
							//console.log(htmlOutput);
						}
                    }
				}
			};
		

