//
// ==UserScript==
// @name           DaCyclops' KoL - Logout Confirm
// @namespace      http://cyclops.yqmonline.com
// @include        *kingdomofloathing.com/topmenu.php*
// @description    Adds a Confirmation to the Log Out button. Version 1
//
// ==/UserScript==

var docBody = document.getElementsByTagName("body")[0];
var splitup = docBody.innerHTML.split('<a href="logout.php" target="_top">log out</a>');

docBody.innerHTML = splitup[0] + '<a href="#" onClick="javascript:if (confirm(\'Continue with Log Out?\')){top.location.href = \'logout.php\'; exit;}else{exit;}">log out</a>' + splitup[1];
