
// version 0.1
// 2008-06-29
// author - immortalnights
//
// homepage - http://www.ikaraimlibrary.com/
// for up to date details and version, please check the home page.

// ==UserScript==
// @name           IkariamLibraryGMExampleScript
// @namespace      ikariamScript
// @description    A simple example for ensuring Greasemonkey is successfully installed and running.
// @include        http://ikariamlibrary.com/?content=Greasemonkey%20Scripts
// @include        http://www.ikariamlibrary.com/?content=Greasemonkey%20Scripts
// ==/UserScript==

function init() {
    var stepGuide = document.getElementById("stepByStep");
    if (stepGuide) {
        stepGuide.innerHTML = "<li><em>Well Done</em>. The Ikariam Library Greasemonkey example script is successfully installed and has edited the page to contain this information instead of the original step by step guide.</li>\n";
        stepGuide.innerHTML += "<li>You should now be able to download and install the scripts available at Ikariam Library</li>";
    }
}

init();
