			var pageButtonContent = { 
				"buttonList": [ 
					{	"btnTitle" : "Chat",
						"localizedText" : "Chat",
						"btnWidth" : "66",
						"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" : "Internet",
						"btnWidth" : "91",
						"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" : "Organizador pessoal",
						"btnWidth" : "171",
						"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" : "Play",
						"btnWidth" : "66",
						"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" : "Galeria de Fotos",
						"btnWidth" : "146",
						"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" : "Especifica&ccedil;&otilde;es",
						"btnWidth" : "130",
						"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(iOut == (btnObject.length-1) ){ //final button on right of menu
							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_final_left\" class=\"btn_final_left_" + btnObject[iOut].btnStatus + "\">" ;
							htmlOutput += "</div>" ;
							htmlOutput += "<div id=\"btn_center_" + btnObject[iOut].btnTitle + "\" class=\"btn_center btn_final_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>" ;
							htmlOutput += "</div><div id=\"btn_final_right\" class=\"btn_final_right_" + btnObject[iOut].btnStatus + "\" style=\"left:" + String(Number(btnObject[iOut].btnWidth) + 6) + "px;\"></div></div>" ;
						} else { //first through button-1
							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) ;
                    }
				}
			};
		
