var quiz = {
	questions : [
		{
			text : 'What form of attack are all algorithms susceptible to?',
			img : 'http://media.techtarget.com/WhatIs/images/spacer.gif',
			responses : [
				'Meet-in-the-middle',
				'Spoofing',
				'Stream cipher',
				'Brute-force'
			],
			answer : 3,
			score : 1,
			expandedAnswer : 'Learn more about <a href="http://searchsecuritychannel.techtarget.com/generic/0,295582,sid97_gci1243537,00.html">attacks on algorithms</a>.',
			moreInfo : ''
		},
		{
			text : 'A digital signature provides which of the following?',
			img : 'http://media.techtarget.com/WhatIs/images/spacer.gif',
			responses : [
				'Auditing',
				'Authentication',
				'Authorization',
				'Analysis'
			],
			answer : 1,
			score : 1,
			expandedAnswer : 'Learn more about <a href="http://searchsecuritychannel.techtarget.com/guide/faq/0,296293,sid97_gci1328904,00.html">authentication</a>.',
			moreInfo : ''
		},
		{
			text : 'Which of the following is not a popular public-key encryption algorithm?',
			img : 'http://media.techtarget.com/WhatIs/images/spacer.gif',
			responses : [
				'Digital Signature Algorithm (DSA)',
				'DAH',
				'RSA',
				'Diffie-Hellman'
			],
			answer : 1,
			score : 1,
			expandedAnswer : 'Learn more about <a href="http://searchsecurity.techtarget.com/expert/KnowledgebaseAnswer/0,289625,sid14_gci1214227,00.html">public-key encryptions</a>.',
			moreInfo : ''
		},
		{
			text : 'Which of the following ensures that data is not modified in transit?',
			img : 'http://media.techtarget.com/WhatIs/images/spacer.gif',
			responses : [
				'Confidentiality',
				'Integrity',
				'Authentication',
				'Authorization'
			],
			answer : 1,
			score : 1,
			expandedAnswer : 'Learn more about <a href="http://searchstoragechannel.techtarget.com/tip/0,289483,sid98_gci1317693,00.html">modified data</a>.',
			moreInfo : ''
		}
	]
};