var quiz = {
	questions : [
		{
			text : 'What does DLP stand for?',
			img : 'http://media.techtarget.com/WhatIs/images/spacer.gif',
			responses : [
				'Data leakage prevention',
				'Data loss protection',
				'Digital light processing',
				'All of the above'
			],
			answer : 3,
			score : 1,
			expandedAnswer : '',
			moreInfo : ''
		},
		{
			text : 'Which kind of content is <i>not</i> typically monitored for by a DLP tool?',
			img : 'http://media.techtarget.com/WhatIs/images/spacer.gif',
			responses : [
				'Existing product data sheets',
				'Personally identifiable information (PII)',
				'Trade secrets',
				'Pre-release financial reports'
			],
			answer : 0,
			score : 1,
			expandedAnswer : 'Existing product data sheets are published and often shared with prospects and/or customers.',
			moreInfo : ''
		},
		{
			text : 'Of the following options, what "data-in-motion" transport mechanisms is considered the most popular place for data leakage?',
			img : 'http://media.techtarget.com/WhatIs/images/spacer.gif',
			responses : [
				'Databases',
				'Email messages',
				'Laptops',
				'USB flash drives'
			],
			answer : 1,
			score : 1,
			expandedAnswer : 'A slightly trick question, but email is really the only "data-in-motion" option of the four listed.',
			moreInfo : ''
		},
		{
			text : 'Which option is <i>not</i> a key benefit to deploying a DLP tool for proof-of-concept?',
			img : 'http://media.techtarget.com/WhatIs/images/spacer.gif',
			responses : [
				'Performance testing',
				'Problem illumination',
				'Responsibility assignment',
				'Risk management support'
			],
			answer : 2,
			score : 1,
			expandedAnswer : 'This is a people process that must be resolved separate from the technical solution deployment.',
			moreInfo : ''
		},
		{
			text : 'What benefits to risk management does DLP provide?',
			img : 'http://media.techtarget.com/WhatIs/images/spacer.gif',
			responses : [
				'Eliminates the need for risk management by highlighting actual usage.',
				'Highlights data flows to identify hot spots and the volume of information being distributed through the organization.',
				'Illustrates how risk can be thought of as a concept only.',
				'Shows how to calculate information asset value.'
			],
			answer : 1,
			score : 1,
			expandedAnswer : 'The flow of data is an indicator for the likelihood of loss.',
			moreInfo : ''
		}
	]
};