﻿/* This is the skip navigation JavaScript. This makes the skip navigation work for WebKit browsers (e.g. Safari and Chrome) */

function SkipNavigationWebkit() {
    var is_webkit = navigator.userAgent.toLowerCase().indexOf('webkit') > -1;

    if (is_webkit) {
        var target = document.getElementById('mainContents');
        target.href = "#mainContents";
        target.setAttribute("tabindex", "0");
        document.getElementById('skipNavigationLink').setAttribute("onclick", "document.getElementById('mainContents').focus();");
    }
}
