New images

This commit is contained in:
unknown
2012-03-08 23:51:19 +01:00
parent 9b18f495bd
commit 2562e4ddb6
5 changed files with 8 additions and 0 deletions

BIN
data/images/get.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

BIN
data/images/header.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

BIN
data/images/subhead.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

8
data/js/ActiveLinks.js Normal file
View File

@@ -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");
}
});
});