// Global helper functions for enhanced page display

$(document).ready(function() {

  // animation effects for preheader TOG link
   	$("ul.navigation a").each(function(){
 		if(window.location.pathname.search($(this).attr('href')) != -1) $(this).addClass('active');
	})
	$("ul.side-nav a").each(function(){
 		if(window.location.pathname.search($(this).attr('href')) != -1) $(this).addClass('active');
	})
});


