
// for the FAQ pages
jQuery(document).ready(
	function() {
		$('a.question').toggle(
			function() {
				$(this).next().slideDown("fast");
			},
			function () {
				$(this).next().slideUp("fast");
			}
		);
	}
);

$(document).ready(
	function() {
	$("a.screenshot").fancybox({
		'titleShow'		: false,
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'elastic'
	});
});


