// ==UserScript==
// @name           MAHJENG
// @namespace      http://wakimiko.wwwchan.com
// @description    Select the appropriate game for Mahjeng group events
// @include        http://steamcommunity.com/groups/*/eventEdit*
// ==/UserScript==


var games = new Array();
games.push(["Mahjong Quest Collection", 38000]);
games.push(["LUXOR: Mah Jong", 32110]);

var appid = document.getElementById("appID");

for(var i = 0; i < games.length; i++) {
	var game = document.createElement("option");
	game.setAttribute("value", games[i][1]);
	game.innerHTML = games[i][0];
	appid.appendChild(game);
}