// JavaScript Document

function borderHack(){
var nav = document.getElementById("subFooter");
nav.firstChild.style.borderLeft = "none"; 
}

if (window.addEventListener)
window.addEventListener("load", borderHack, false);
else if (window.attachEvent)
window.attachEvent("onload", borderHack);
