//Remove Border Around Banner
/* remove all borders */
var table = document.getElementsByTagName("table");
for(i=0; i<table.length; i++){
    table[i].cellSpacing = "0";
    table[i].border = "0";
}
//end Remove Border Around Banner

//Recent Posts Button
/*
Add Button to Menu Bar
Created by Eichi
http://theozymandius.proboards22.com/index.cgi
*/
// If you have an image, put in the full image tag here. Else, just put the link title
var mButton = '<img src="http://forumimgs.KaitlynMaherFiles.com/RecentPosts_0.png" border="0" />';

// Put the URL of the link
var mURL = "http://kaitlynmaher.proboards.com/index.cgi?action=recent";

// No editing required
var menuBar = document.getElementsByTagName('td')[5];
if(menuBar.className == "menubg"){
   menuBar.innerHTML += '<a href="'+mURL+'">'+mButton+'</a>';
}
//end Recent Posts Button
