var quiz = {
	questions : [
		{
			text : 'A Mississippi riverboat casino uses synchronous token devices for authentication. Which does not describe such a device?',
			img : 'http://media.techtarget.com/WhatIs/images/spacer.gif',
			responses : [
				'Challenge-based <br>',
				'One-time password generator',
				'Time-based',
				'Authentication mechanism'
			],
			answer : 0,
			score : 1,
			expandedAnswer : 'Synchronous token devices are one-time password generators based upon timing or events that are used for authentication. Asynchronous token devices are based on a challenge/response process.',
			moreInfo : ''
		},
		{
			text : 'A network-based intrusion detection system (IDS) does not do, or is not what?',
			img : 'http://media.techtarget.com/WhatIs/images/spacer.gif',
			responses : [
				'Monitors traffic on a network segment.',
				'Computer or network appliance with NIC in promiscuous mode.',
				'Sensors communicate with a central management console.',
				'None of these answers are correct. <br>'
			],
			answer : 3,
			score : 1,
			expandedAnswer : 'None of these answers are correct.  They all apply to network-based IDS.',
			moreInfo : 'Check out our archive of <a href="http://searchsecuritychannel.techtarget.com/tips/index/0,289482,sid97_tax307691,00.html" target="_blank">Snort tips</a> from Richard Bejtlich, an expert on the open-source network IDS.'
		},
		{
			text : 'What does RADIUS stand for?',
			img : 'http://media.techtarget.com/WhatIs/images/spacer.gif',
			responses : [
				'Remote Authentication Demon Information User',
				'Remote Authentication Dial-in User Service <br>',
				'Regional Authentication Dial-in User Service',
				'Regional Automatic Dial-in User Service'
			],
			answer : 1,
			score : 1,
			expandedAnswer : 'Remote Authentication Dial-in User Service.  The other answers are incorrect breakdowns of the acronym.',
			moreInfo : 'Find out more information about <a href="http://searchsecurity.techtarget.com/sDefinition/0,,sid14_gci214249,00.html" target="_blank">RADIUS</a> in this definition.'
		},
		{
			text : 'Systems that are based on the MAC model can work in different modes. The dedicated security mode requires that the system has all of the following except:',
			img : 'http://media.techtarget.com/WhatIs/images/spacer.gif',
			responses : [
				'Subjects must have direct access to the system only. <br>',
				'Only one classification of information can be running at a time.',
				'Users must have a need-to-know for all data within the system.',
				'All users must have nondisclosure agreements and access approval clearance. '
			],
			answer : 0,
			score : 1,
			expandedAnswer : 'In dedicated security mode users can have direct and indirect access to the specific system. All other answers are true and must be in place for a system to be working in this mode.',
			moreInfo : ''
		},
		{
			text : 'There are asynchronous and synchronous tokens that are used for authentication processes. Which of the following is a correct type of a synchronous token?',
			img : 'http://media.techtarget.com/WhatIs/images/spacer.gif',
			responses : [
				'It is a counter-based mechanism. <br>',
				'It uses random values during response generation.',
				'It generates a password through the use of the server’s TOC/TOU.',
				'It uses nonce values to introduce the necessary randomness to the process.'
			],
			answer : 0,
			score : 1,
			expandedAnswer : 'An asynchronous one-time password token is based on challenge response. A synchronous token uses a time or event counter. This counter value is used to create the one-time password. Nonce and random values are not used in this process. Answer c is just a distracter. TOC/TOU is a type of attack.',
			moreInfo : ''
		}
	]
};