$(document).ready(function() {
    var loc = window.location.pathname;
    
    $('#subnav ul li').each(function(index) {
    	var link = "/" + $(this).children('a').attr("href");
    	if(loc == link) {
    		var title = $(this).children('a:first').text();
    		$(this).addClass('subnavactive');
    		$(this).children('a').remove();
    		$(this).prepend(title);
    		if ($(this).children('ul').size() > 0) {
    			$(this).css("margin-bottom","0px");
    		}
    	}
    });
});
