//	function __getProducts()
//	@return	Array of products for request assistance dropdown
function __getProducts()
{
	arr_products = new Array(
		"Frames 3",
		"Frames 4",
		"ImageBlender 3.x",
		"ImageBlender 2.x",
		"MediaBlender 3.x",
		"MediaBlender 2.x",
		"Pixie",
		"Pixie 2",
		"Recipes4Success",
		"Share 3",
		"SimplyVR",
		"Twist",
		"VideoBlender",
		"WebBlender 2.x",
		"WebBlender 1.x",
		"Wixie"
	);
	
	return arr_products;
}
//	end function __getProducts()


//	function __getOperatingSystems()
//	@return	Array of operating systems for request assistance dropdown
function __getOperatingSystems()
{
	arr_operatingSystems = new Array(
		"Mac OS X 10.6",
		"Mac OS X 10.5",
		"Mac OS X 10.4",
		"Mac OS X 10.3",
		"Mac OS X 10.2",
		"Windows 7",
		"Windows Vista",
		"Windows XP",
		"Windows 2000",
		"Windows 98/ME",
		"Linux",
		"Other"
	);
	
	return arr_operatingSystems;
}
//	end function __getOperatingSystems()


//	function __getHowDidYouHearAboutUs()
//	@return	Array of ways that someone may have heard about us
//			Note: this is a multi-dimensional array so that
//			non-clickable dividers can be placed between
//			the various categories of options (if desired)
function __getHowDidYouHearAboutUs()
{
	arr_howDidYouHear = new Array(
		new Array(
			"Colleague",
			"Conference",
			"Training"
		),
		new Array(
			"Professional Journal",
			"Creative Educator Magazine",
			"News - Print",
			"News - Online",
			"Social Media (Facebook, Twitter, TeacherTube)",
			"Web search"
		),
		new Array(
			"Contact by a Tech4Learning Employee",
			"Tech4Learning Brochure",
			"Email from Tech4Learning"
		),
		new Array(
			"Other"
		)
	);
	
	return arr_howDidYouHear;
}
//	end function __getHowDidYouHearAboutUs()

