﻿//    contains script that is specific to innerpages (all pages except homepage)
//    could be merge into global.js if there is still only a small amount of script
$(document).ready(function(){
    //    sub nav: hide border on <li> preceeding active <li>
    $('#nav > li.active').prev().find('a').css('border','0');
});