$( function() {
	$("#topnav a").each(
		function() {
			var page_bookmark = "";
			var current_href = $(this).attr("href");
			var docLoc = document.location.href;
			current_href = location.href.substring(0,document.location.href.lastIndexOf('/') + 1) + current_href;
			
			if(docLoc.match("#") != null)
			{
				page_bookmark = docLoc.substring(docLoc.indexOf("#"),docLoc.length);
				current_href = current_href + page_bookmark;
			}
			
			if (document.location == current_href) {
				$(this).addClass("mainNavigationLinkActive");
			}
	});
	
	$("#leftnav a").each(
		function() {

			var current_href = $(this).attr("href");
			current_href = location.href.substring(0,document.location.href.lastIndexOf('/') + 1) + current_href;

			
			if (document.location == current_href) {
				$(this).addClass("mainProductServiceLinkActive");
				$("#topnav a[href=products.html]").addClass("mainNavigationLinkActive");
			}
	});
});