﻿/*

This javascript library is used to render graphical features on the SLSC website while
remaining entirely unobtrusive in order to protect markup accessibility.

You may adapt and learn from the methods within this javascript file to use in your own
projects.

*/

function checkForJs() 
{
    /* 
        If we can't use either of these DOM methods, we can't do substitutions
        because the browser doesn't support them or javascript is disabled
        Note: Each method in this library should call this method first as a check
    */
    if(!document.getElementById) return false;
    if(!document.getElementsByTagName) return false;    
}

/* There will be more here as needed */
