//place visitors in test if this is their first visit to the site
	if(location.search.indexOf("t41=on")>-1) createCookie("convTest41","Test",30);
	else if(location.search.indexOf("t41=off")>-1) createCookie("convTest41","Control",30);
	else if(location.search.indexOf("t41=reset")>-1) eraseCookie("convTest41");

	if(!readCookie("convTest41"))
	{
		var today = new Date();
		var one_day=1000*60*60*24 //Get 1 day in milliseconds
		serialDateToday =Math.ceil(today.getTime()/one_day);

		var pareto = Math.floor(Math.random()*100);
		if(pareto < 50)
		{
			createCookie("convTest41","Control",30);
		}
		else
		{
			createCookie("convTest41","Test",30);
		}
	}

	var testGroup= readCookie("convTest41");

if(testGroup=="Test")
{
	document.writeln('<script type="text/javascript">var GB_ROOT_DIR = "/includes/GreyBox_v5_53/greybox/";</script>')
	document.writeln('<script type="text/javascript" src="/includes/GreyBox_v5_53/greybox/AJS.js"></script>')
	document.writeln('<script type="text/javascript" src="/includes/GreyBox_v5_53/greybox/gb_scripts.js"></script>')
	document.writeln('<link href="/includes/GreyBox_v5_53/greybox/gb_styles.css" rel="stylesheet" type="text/css" />')
	var browserbump = (navigator.appName.indexOf("Microsoft")>-1 ? 0 : 2)
	document.getElementById('rcBanner').innerHTML = '<a href="/quizPack.html" rel="gb_page_center[' + (748 - 0 + browserbump) + ', ' + (423 -0 + browserbump) + ']"><img src="/cmsimages/notSureTakeQuiz.gif" width="197px" /></a>'
}