// ==UserScript==
// @name			Kusaba Remove Frame
// @namespace		http://wakimiko.wwwchan.com
// @description		Removes the menu frame on kusaba style boards after the first click
// @include			http://*/menu.php
// ==/UserScript==

var rmframes = document.getElementById("removeframes");
if(rmframes) {
	var boardlinks = document.getElementsByTagName("a");
	for(var i=0;i<boardlinks.length;i++) if(boardlinks[i].className == "boardlink") boardlinks[i].target = "_top";
	rmframes.innerHTML = 'Frames removed.';
}