// Client code begins here
var sitetuners281 = new Sitetuners(281);	// instantiate a new experiment
sitetuners281.handler = function(section) {
	this.hasBeenCalled = true;
	if (this.recipe && !this.exclude) {
		if (!this.var01) {
			this.var01=this.recipe.substring(1, 2);
		}
		switch (section) {
			case 'CSS':
				// include css changes to page
				break;
			case 'Page':
				switch (this.var01) {
					case 'a':	// Original
					default:
						break;
					case 'b':	// Client
						document.location = '02.aspx';
						break;
					case 'c':	// H1B1
						document.location = '03.aspx';
						break;
					case 'd':	// H1B2
						document.location = '04.aspx';
						break;
					case 'e':	// H1B3
						document.location = '05.aspx';
						break;
					case 'f':	// H1B4
						document.location = '01.aspx';
						break;
					case 'g':	// H2B1
						document.location = '06.aspx';
						break;
					case 'h':	// H2B2
						document.location = '07.aspx';
						break;
					case 'i':	// H2B3
						document.location = '08.aspx';
						break;
					case 'j':	// H2B4
						document.location = '09.aspx';
						break;
				}
				break;
			default:
				break;
		}
	}
	else {	// either recipe was never set, or we are excluding this visitor
		this.exclude = true;
		if (!sitetuners281.recipe) {
			this.excludeReason = 'no recipe';
		}
	}
};

