// ==UserScript==
// @name Ikariam: Ikariam Transporter
// @author darkyndy
// @include http://*.ikariam.*/index.php*
// @version 0.1
// @description Transport to your villages
// ==/UserScript==
// Add styles BEGIN
function addGlobalStyle(css) {
var head, style;
head = document.getElementsByTagName('head')[0];
if (!head) { return; }
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = css;
head.appendChild(style);
}
addGlobalStyle(
'#transportBox { height: 20px; width: 200px; position: relative; margin:-185px 29px -18px 630px; z-index:99; display:block;}');
// Add styles END
var ikMain = document.getElementById('mainview');
var ikNewElement = document.createElement('div');
ikNewElement.setAttribute('id', 'transportBox');
ikMain.parentNode.insertBefore(ikNewElement, ikMain);
var citySelect = document.getElementById("citySelect");
var new_options = "";
for(var i=0;i<citySelect.length;i++){
//<a href=\"index.php?view=transport&destinationCityId="+citySelect[i].value+"\">T</a>
new_options = new_options+"<option value=\""+citySelect[i].value+"\">"+citySelect[i].text+"</option>";
}
document.getElementById("transportBox").innerHTML = "<form method=\"GET\" action=\"index.php\"><select name=\"destinationCityId\" style=\"width:130px;\">"+new_options+"</select><input type=\"hidden\" name=\"view\" value=\"transport\" /><input type=\"submit\" value=\"Go\" /></form>";