// ==UserScript==
// @name          SoftPedia Play Fix
// @author        Ciuly  
// @namespace     http://www.ciuly.com
// @description   play FIX on the dedicated thread
// @include       http://forum.softpedia.com/index.php?showtopic=*
// @require       http://www.ciuly.com/greasemonkey/aa_all_common.user.js
// @require       http://www.ciuly.com/greasemonkey/aa_sp_common.user.js
// ==/UserScript==

(function(wnd){

  wnd.ciuly_PlayFix = function(){
    return wnd.ciuly_reply(237, 278970, "FIX")
	&& alert("Done");
  }

  function addButton(postid, uname, uid){
    return "&nbsp;<button class=\"button\" name=\"Play Fix\" title=\"Play Fix\" onclick=\"return ciuly_PlayFix()\">Play Fix</button>&nbsp;";
  }

  if (wnd.ipb_md5_check)
    wnd.ciuly_on_every_post(addButton);

})(window.wrappedJSObject || window);