// This is the skiplink javascript. This makes the skip link work for WebKit browsers 
// (e.g. Safari andf Chrome. It must appear after both the skip link and skip target, so the bottom of the page is best 
 //<![CDATA[
var is_webkit = navigator.userAgent.toLowerCase().indexOf('webkit') > -1;
if(is_webkit) 
{
 var target = document.getElementById('skiptarget');
 target.href="#skiptarget";
 target.innerText="Start of main content";
 target.setAttribute("tabindex" , "0");
 document.getElementById('skiplink').setAttribute("onclick" , "document.getElementById('skiptarget').focus();");
}
//]]>
<!-- End of skiplink javascript -->
