// ==UserScript==
// @name          SoftPedia Move To Fun-Chat
// @author        Ciuly  
// @namespace     http://www.ciuly.com
// @description   Moves current topic to fun-chat
// @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
// @require       http://www.ciuly.com/greasemonkey/aa_sp_mod_common.user.js
// ==/UserScript==

(function(wnd){

  var forms, form, uid, uname, div;

  form = document.getElementsByName("modform2")[0];
  if ( !form ) {
//    alert("mod form 2 not found.");
    return;
  }

  form.innerHTML = form.innerHTML + 
     "&nbsp;<button class=\"button\" name=\"ciuly_move_to_fun_chat\" title=\"Move topic to fun chat\" onclick=\"return ciuly_moveTopic("+wnd.ipb_input_t+", 237)\">Move to fun-chat</button>&nbsp;"
  ; 


})(window.wrappedJSObject || window);