Update DOM Title for the page, to say 'Peds' before the actual title
<!-- Load jQuery to update DOM elements & such -->
<SCRIPT type="text/javascript" src="https://code.jquery.com/jquery-1.12.3.min.js"></script>
<!--- Update TITLE for each page, to say 'Peds' before actual title --->
<SCRIPT language = "JavaScript">
$(document).ready(function(){
document.title = 'Peds ' + document.title;
});
</SCRIPT>