I am currently working on implementing a selected state using jQuery for my website. I have successfully implemented it on all pages except for the home page, as there is no unique identifier such as "www.abcd.co.nz".
For those interested, you can view the JS Fiddle example here: http://jsfiddle.net/zangief007/1ta4gxwn/
if (window.location.href.indexOf("/") > -1) {
$("header ul li a.home").addClass("tn-selected");
}
if (window.location.href.indexOf("about") > -1) {
$("header ul li a.about").addClass("tn-selected");
}
if (window.location.href.indexOf("links") > -1) {
$("header ul li a.links").addClass("tn-selected");
}
if (window.location.href.indexOf("contact") > -1) {
$("header ul li a.contact").addClass("tn-selected");
}