	
	// The MOOdalBox
	
window.addEvent('domready', function(){
	// if we cant get the cookie or it aint true - gogo demographic.
	if ( Cookie.get('mooDemographic') != 'true' ) {
		(function(){ 
				MOOdalBox.open(
					"/demographic.html",
					"Please take a moment to complete and submit.",
					"350 280"); 
		}).delay(5000);
		// the set the cookie
		Cookie.set('mooDemographic', 'true', {duration: 60});
	}
});