function aM(oB,mD) {
	tmpSrc = oB.src;
	if (mD == "on") {
		oB.src = tmpSrc.replace("_off.","_on.");
	} else if (mD == "off") {
		oB.src = tmpSrc.replace("_on.","_off.");
	}
}

function fuckThisShit(tid) {
	new Ajax.Request("fuxport.php?tid=" + tid, {onSuccess: noReallyFuckThisShit, evalScripts:true});
}

function noReallyFuckThisShit(t) {
	tmpThing = t.responseText;
	$("box").innerHTML = tmpThing;
	new Effect.Appear("box", {queue: {position: "end", scope: "box"}, duration: 0.25});
}