//PropertyID.  
var main_property_id = 'UA-10065585-1';


//Event tracking.
//the number of milliseconds to wait before handling
//an event tracking click. 100 is optimal, max <= 250 
var event_track_lag_milliseconds = 100;

//Custom Variables 
//For segmentation.  Must be 2-dimensional array, even if only one member; *or*:
//Set to null to suppress computation of custom variables.
//See doc for full explanation.  All parameters passed by position.  
/*
parameters
index       int 	Required. The slot used for the custom variable. Possible values are 1-5, inclusive.
name        string	Required. The name for the custom variable.
value       string	Required. The value for the custom variable.
opt_scope   int		Optional. The scope used for the custom variable. Possible values are 1 for visitor-level, 2 for session-level, and 3 for page-level.
e.g.:
var customVariable = [[1, 'MemberLevel', '<generatedValue>', 1]];
*/
var customVariable = null;

//url_override:  if not null, passed to _trackPageview instead of page URL
//var url_override = null;

//eCommerce flag.
//If false, eCommerce is not computed.
//If true then *transaction* and *items* must be computed on server.
//Can be generated server-side.
var eCommercePage = false;

//eCommerce Variables.
//See doc.
var transaction = [];
var items = [[]];

