It contains a number of options to configure advanced parameters as Google Analytics.
Example tracking clicks on the menu "Extensions".
First find out the ID of the menu, in my case "menu120", once we know the ID of the plugin and the parameter "Code After _trakPageview" add the following javascript code.
$('menu120').addEvent('click', function(){
pageTracker._trackEvent('Extensions', 'click', 'Menu');
});
With this feature we add we are doing that when the browser menu click on the "Extensions" with ID = menu120 add the action "click" in the category "Extensions" and labeled "Menu".




