// make the current page show as active on the nav
$(document).ready(function() {
	$("#nav li a, #case-study ul li a").each(function() {
	if(this.href == window.location || this.href == document.location.protocol + "//" + window.location.hostname + window.location.pathname)
		 $(this).parent().addClass("current");
	})
});
