﻿/*
* Script to hide border on last page link
*/

window.onload = function() {
    if (document.getElementById && document.getElementById("pages")) {
        // Grab all links in the pages list
        var aLinks = document.getElementById("pages").getElementsByTagName("a");
        
        // Turn the border off for the last one
        aLinks[aLinks.length - 1].style.borderBottom = "0px";
    }
}