// OnlineOpinion v4.0
// This product and other products of OpinionLab, Inc. are protected by U.S. Patent No. 6606581, 6421724, 6785717 B1 and other patents pending.

var oOobj4 = new OnlineOpinion.ocode(); 

oOobj4.Preferences = {
	Persistence: {
		enabled: false, 			// Disapear onClick
		cookie_name: 'oo_event',	// cookie name 
		cookie_type: 'domain', 		// Remembers which page got rated
		expiration: 2592000	 		// How long to remember each page got Rated (in secs)=30 days
	},
	Render: {
		type: 'event'
	},
	Plugins: {
		URLRewrite: {
			active: true,
			regex_search_pattern: /:\/\/[\d\w\.\-\:]+\/*/g ,
			regex_replace_pattern: '://event.espn.go.com/'
		},
		Events: {
			poE: 0.0,				// Probability on Entry 
			poX: 0.05,				// Probability on Exit
			poC: 0.0				// Probability on Click
		}
	}
}

// Custom variables (optional)
// oOobj4.Metrics.custom.clientID = 1234;
// oOobj4.Metrics.custom.countryCode = 'usa';

// Call Back
OnlineOpinion.util.SafeAddOnLoadEvent(function(){oOobj4.init();oOobj4.onEntry();OnlineOpinion.util.walkAnchors(document.body, 10, /(:\/\/extranet\.opinionlab\.com|javascript:O_LC\(\))/i, oOobj4)});
OnlineOpinion.util.SafeAddOnUnLoadEvent(function(){oOobj4.onExit()});

// Render Onload (needed for static & floating) - DISABLED
// OnlineOpinion.util.SafeAddOnLoadEvent(function(){oOobj2.render(function(){oOobj2.show()})});

//  OnlineOpinion v4.0, Copyright 2007-2008 Opinionlab, Inc.