Target class will be hidden on detail page views for page parts such as staff directory, calendar events, job board, etc.
location.href.indexOf('XXXX')
can be changed at will to target which ever page is needed to call the hide function on, the example below is on the staff directory page part.
if (location.href.indexOf('?staff=') >= -1) {
$('.item-hide').hide();
}