/* JavaScript Page Process/Events Routines Used throughout the PAWS Portal Application */
/* Added By:  Brandon Bernard */
/* Date:  03/30/2009 */
function MasterPage_OnLoad()
{
    //No need to use Try/Catch around this because we assume that any calling location for this event
    //will trap and handle any errors that are thrown (ie. jQuery is not available).
    $(document).ready(function() {
        try
        {
            //Remove the Pipe from the First element in the Footer Pipe Delimited List
            //Note:  We could not easily do this with Pure CSS so we simply use jQuery to complete
            //       the pseudo Pipe Delimited list of dynamic links created.
            $('#footer .HCPIDFooter .AspNet-Menu-Horizontal li:first-child').css('border-left', 'none');
        }
        catch(e)
        {
            alert(e);
        }
    });
}


