function createGaContents() {
	var menuItems=new Array();
	var i=0;

	menuItems[i]=new Object;
	menuItems[i].name="50-50 Gold";
	menuItems[i++].ref='"5050gold.htm"';

	menuItems[i]=new Object;
	menuItems[i].name="BATCH GAMES";
	menuItems[i++].ref='"batchgames.htm"';

	str="<table id='menu' cellspacing=0px cellpadding=0px style='width:160px; height:50px; "
		+"border-width:0px;'>";
	str+="<tr><td class=separator><hr></td></tr>";
	str+="<tr><td><a class=leftmenuheader style='cursor:default;'>Games</a></td></tr>";
	for( i=0; i<menuItems.length; i++ ) {
		if( menuItems[i].name==document.title ) {
			str+="<tr><td><a class=leftmenuitem style='cursor:default; color:gold'>"
				+menuItems[i].name+"</a></td></tr>";
		} else {
			str+="<tr><td><a class=leftmenuitem href="+menuItems[i].ref+">"+menuItems[i].name
				+"</a></td></tr>";
		}
	}
	str+="<tr><td class=separator><hr></td></tr>";
	str+="</table>";
	document.all.contents.insertAdjacentHTML("afterBegin", str);
}