The man, who is in a stable condition in hospital, has "potentially life-changing injuries" after the overnight attack in Garvagh, County Londonderry. He was shot in the arms and legs.
// Detect scrolling and toggle class based on scroll position
window.addEventListener('scroll', function() {
var masthead = document.getElementById('masthead');
if (window.scrollY >= 400) {
masthead.classList.add('show-header');
} else {
masthead.classList.remove('show-header');
}
});