			var pageButtonContent = { 
				"buttonList": [ 
					{	"btnTitle" : "Chat",
						"localizedText" : "Chat",
						"btnWidth" : "70",
						"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" : "Browse",
						"btnWidth" : "83",
						"btnStatus" : "off",
						"onClickCommand" : "window.location='browse.html';",
						"mouseover" : "document.getElementById('local_Browse').style.color='#d69f0a';",
						"mouseout" : "document.getElementById('local_Browse').style.color='#666666';"
					},
					{	"btnTitle" : "Organise",
						"localizedText" : "Organise",
						"btnWidth" : "99",
						"btnStatus" : "off",
						"onClickCommand" : "window.location='organise.html';",
						"mouseover" : "document.getElementById('local_Organise').style.color='#d69f0a';",
						"mouseout" : "document.getElementById('local_Organise').style.color='#666666';"
					},
					{	"btnTitle" : "Play",
						"localizedText" : "Play",
						"btnWidth" : "75",
						"btnStatus" : "off",
						"onClickCommand" : "window.location='play.html';",
						"mouseover" : "document.getElementById('local_Play').style.color='#d69f0a';",
						"mouseout" : "document.getElementById('local_Play').style.color='#666666';"
					},
					{	"btnTitle" : "Work",
						"localizedText" : "Work",
						"btnWidth" : "88",
						"btnStatus" : "off",
						"onClickCommand" : "window.location='work.html';",
						"mouseover" : "document.getElementById('local_Work').style.color='#d69f0a';",
						"mouseout" : "document.getElementById('local_Work').style.color='#666666';"
					},
					{	"btnTitle" : "Gallery",
						"localizedText" : "Gallery",
						"btnWidth" : "72",
						"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" : "Specs",
						"btnWidth" : "92",
						"btnStatus" : "off",
						"onClickCommand" : "window.location='specs.html';",
						"mouseover" : "document.getElementById('local_Specs').style.color='#d69f0a';",
						"mouseout" : "document.getElementById('local_Specs').style.color='#666666';"
					},
					{	"btnTitle" : "Buy",
						"localizedText" : "Buy",
						"btnWidth" : "95",
						"onClickCommand" : "window.location='buy.html';",
						"mouseover" : "document.getElementById('local_Buy').style.color='#0c99cc';",
						"mouseout" : "document.getElementById('local_Buy').style.color='#666666';"
					}
				],
				"displayButtons" : function() {
                    var iOut=0 ;
					var outputX=154; //location of div
					var btnObject = this.buttonList ; //get data from JS object
					
                    for(iOut=0; iOut < btnObject.length; iOut++ ) {
						if(btnObject[iOut].btnTitle != "Buy" ){
							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\">" + btnObject[iOut].localizedText + "</div></div></div>" ;
							document.write(htmlOutput) ;
							//console.log(htmlOutput);
						}
                    }
				}
			};
		
