$("#nav a").each(function() {
/*debug*/ alert((base + $(this).attr("href")) + '==' + window.location.href);
if (base + $(this).attr("href") == window.location.href) {
$(this).parents().show();
/*debug*/ alert('ok');
} else {
/*debug*/ alert('failed');
}
}