// Swap out content from Zen-Cart Store to do A/B testing


$('#productDescription').ready(function(){
	var newOptions = {expiresAt: new Date( 2011, 1, 1 )};
	if (target != 'text_0' || (target == 'text_0' && $.cookies.get("target_demographic") == null)) {
		$.cookies.set("target_demographic", target, newOptions);
	}
	if($.cookies.get("target_demographic") == null) {
		$.cookies.set("target_demographic", 'text_0', newOptions);
	}
	var target_dem = '#'+$.cookies.get("target_demographic");
	$('#productDescription').append($(target_dem).html());
});
