Use a mix of jquery and css
 
1) Just some basic now, for the ease of things, we give this new highlight the same style as when you hover over a menu item
open user.css and add the following
	
	
	
		Code:
	
	
		#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;
}
	 
 2) Now copy wrapper.html into the folder "child" of parabola
3) Open this newly copied file
4) Below
	
	
Add
	
	
	
		Code:
	
	
		        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');
            }
        });
	 
 Tested and working 
