//Written by slayer766 of thecodingzone.com
if(location.href.match(/\/(forum|topic)\//i)){
document.write("");
$("td.c_foot:last").append("Jump to:");
}
function LoadForums(){
var a = window.frames['GetForums'].document.getElementsByTagName("a");
for(var c = 0; c < a.length; c++){
if(a[c].href.match(/\/forum\//i)){
if(a[c].innerHTML.match("&")){
a[c].innerHTML=a[c].innerHTML.replace(/\&/g,"and");
}
Add_Forums(document.jump_box.jump_select,a[c].href,"- "+a[c].innerHTML);
}
}
}
function Add_Forums(form,url,forum){
var add_option = document.createElement("option");
add_option.text = forum;
add_option.value = url;
form.options.add(add_option);
}