Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#navigation li a.highlight {
color: #2b567f;
background: #ddd url(img/bg9.png) bottom left repeat-x;
background: #fff url(img/bg8.png) top left repeat-x;
border: 0px solid #fff;
text-shadow: 1px 1px 2px #fff;
}
$(function() {
var top_nav_link = window.location.href;
$("#navigation li a").each(function() {
if(this.href == top_nav_link) {
$(this).parent().siblings().children().removeClass('highlight');
$(this).addClass('highlight');
}
});

var ucp_nav_link = window.location.href;
$("#user_cp_main_menu li a").each(function() {
if(this.href == ucp_nav_link) {
$(this).parent().siblings().children().removeClass('ucp_highlight');
$(this).addClass('ucp_highlight');
}
});
# user_cp_main_menu li a.ucp_highlight {
font-weight: bold;
}