Not working still... I did exactly as you said and put in the JS code:
Code:
<script type="text/javascript">
$('#treemenu1').find('a').click(function(){
$('#treemenu1').find('a').each(function(){
if (this.href==("index.php"+location.search)){
this.addClass('Active');
}else{
this.removeClass('Active');
}
})
});
</script>
*sigh*