//SET UP AD TYPES
//var adType_standard = new AdType("Standard", "This format enables you to display a logo or image with your ad message.");
//var adType_custom = new AdType("Custom", "This format is designed to add impact to the look of your image and ad copy.");
var adType_animated = new AdType("Animated", "This format brings movement and action to your ad message.");
var adType_viv = new AdType("Video-in-Video", "This innovative format brings video inside the ad unit, attracting more interest to your ad.");
var adType_superoverlay = new AdType("Super Overlay", "This format provides the ultimate in user engagement, allowing for a minisite-like unit within the overlay");
var adType_customEau = new AdType("Interactive Panel", "This format provides the ultimate in user engagement, allowing for a minisite-like unit within the expanded unit");
var adType_cpe = new AdType("3-2-1 Peel", "This format is an overlay with any of the other designs, but its expanded view is initiated with a 3-2-1 hover engagement");
var adType_preroll = new AdType("Pre-roll", "This format consists of a video unit that is played in the video player before the main content begins. It can have optional companion ad(s) to be served as display ads on the page");
var adType_superpreroll = new AdType("Super Pre-roll", "This ground-breaking format consists of an interactive component along with a video unit that is played in the video player before the main content begins. It can have optional companion ad(s) to be served as display ads on the page");






//SET UP AD EXAMPLES

	//SUPEROVERLAY
	adType_superoverlay.addExample(new AdExample('superoverlay_dove', 'Dove', '4.1'));
	adType_superoverlay.addExample(new AdExample('superoverlay_prius', 'Prius', '4.1'));
	adType_superoverlay.addExample(new AdExample('superoverlay_target', 'Target', '4.1', 'as3'));
	adType_superoverlay.addExample(new AdExample('superoverlay_versa', 'Versa', '4.3', 'as3'));
	
	//CPE
	adType_cpe.addExample(new AdExample('cpe_fastfurious', 'Fast and Furious', '4.6', 'as3'));
	adType_cpe.addExample(new AdExample('cpe_wrestler', 'The Wrestler', '4.2'));
	
	//CUSTOM EAU
	adType_customEau.addExample(new AdExample('interactivePanel_sdarko', 'SDarko', '4.2', 'as3'));
	adType_customEau.addExample(new AdExample('interactivePanel_valkyrie', 'Valkyrie', '4.3', 'as3'));	
	
	
	//CUSTOM
	//adType_custom.addExample(new AdExample('custom_upsstore', 'The UPS Store', '4.1'));
	//adType_custom.addExample(new AdExample('custom_mammamia', 'Mamma Mia', '4.1'));

	//ANIMATED
	adType_animated.addExample(new AdExample('animated_juno', 'Juno', '4.1'));
	adType_animated.addExample(new AdExample('animated_jumper', 'Jumper', '4.1'));



	//VIDEO-IN-VIDEO
	adType_viv.addExample(new AdExample('viv_fighting', 'Fighting', '4.1'));
	adType_viv.addExample(new AdExample('viv_snickers', 'Snickers', '4.1'));
	
	//PRE-ROLL
	adType_preroll.addExample(new AdExample('preroll_juno', 'Juno', '4.2', 'as3', true));	
	
	//SUPER PRE-ROLL
	adType_superpreroll.addExample(new AdExample('superpreroll_vaseline', 'Vaseline', '4.7', 'as3', true));
	



//ADD AD TYPES TO allAdTypes
allAdTypes.push(adType_superpreroll);
allAdTypes.push(adType_preroll);
allAdTypes.push(adType_superoverlay);
allAdTypes.push(adType_cpe);
allAdTypes.push(adType_customEau);
allAdTypes.push(adType_viv);
allAdTypes.push(adType_animated);
//allAdTypes.push(adType_custom);

