$(function() { 
	
	// Give Network menu element selected class if the href matches the lociation to highlight the network page you are on
	$("#network li a").each(function (i) {
		if ( $(this).attr('href') == window.location.href) {
			$(this).addClass("selected");
		}
	});
	
});

