diff --git a/data/images/get.png b/data/images/get.png new file mode 100644 index 00000000..f8f570cd Binary files /dev/null and b/data/images/get.png differ diff --git a/data/images/header.png b/data/images/header.png new file mode 100644 index 00000000..a040880e Binary files /dev/null and b/data/images/header.png differ diff --git a/data/images/nav-link-selected.png b/data/images/nav-link-selected.png new file mode 100644 index 00000000..4e0f99b1 Binary files /dev/null and b/data/images/nav-link-selected.png differ diff --git a/data/images/subhead.png b/data/images/subhead.png new file mode 100644 index 00000000..2df5ed59 Binary files /dev/null and b/data/images/subhead.png differ diff --git a/data/js/ActiveLinks.js b/data/js/ActiveLinks.js new file mode 100644 index 00000000..282f70d6 --- /dev/null +++ b/data/js/ActiveLinks.js @@ -0,0 +1,8 @@ +$(document).ready(function () { + $("#nav li a").each(function () { + var hreflink = $(this).attr("href"); + if (hreflink == location.href.split("/").pop()) { + $(this).parent().addClass("selected"); + } + }); +}); \ No newline at end of file