$(document).ready(function() {
	
 
// Action of Click	
//	$('div.question').click(function() {
//		if($(this).next().is(':visible')) {
//			$('div.answer').slideUp('fast');
//		} else {
//			$('div.answer').slideUp('fast');	
//			$(this).next().slideDown('normal');
//		}
//	});

$('.question').click(function() {
    $(this).next('.answer').slideToggle('fast');
});


// Hide All on Load
	$("div.answer").hide();
});

