This may be a little redundant but I was wondering if there's a way to improve the code by shortening it to avoid repetition.
$('a[href*="#about"]').click(function()
I want to target #about #products #process #gallery #contact
I want to avoid:
$('a[href*="#about"]', 'a[href*="#process"]', a[href*="#etc"]' ).click(function()