/**
 * Event Listeners
 * 
 * event = new EventListener(id,events,action,name,linkType,filter);
 * 
 * Arguments:
 * 1) ID: This is the id. 
 * 		Example: <a href="..." id="ThisIsTheId">...</a> for any object on the page.
 * 2) Event(s): List of events delimited by ";".  
 * 		Example: onclick;onchange;onblur;onfocus;onmouseover
 * 3) Actions: List of actions or functions to fire.  
 * 		Example: s.eVar16 ='MA - Chat';s.prop11='MA - Chat';alert('Executed! '+s.eVar16)
 * 4) Name: name
 * 5) Link Type: There are only 3 types: o, , ,
 * 6) Page: Page filer. Blank or all means register events for this id on all pages.
 * 		Example: all or Login (looks for indexOf('Login')!=-1) in the s.pageName
 * 
 */
var OMNITURE_EVENTS = new Array(
	"MA_WantHelp,onclick,var s=s_gi('devqwestfull');s.linkTrackVars='eVar6';s.linkTrackEvents='None';s.eVar6='TestEvar6';,name,o,all",
	"askQwest,onclick,s.eVar16 ='MA - Chat';s.prop11='MA - Chat';,name2,o,all"
);
// If this is local then set to true or uncomment.
runLocal=true;


