$(document).ready(function() {
$(".movie").click(function() {
	$.fancybox({
		'overlayColor'	: '#111',
		'padding'		: 0,
		'autoScale'		: false,
		'transitionIn'	: 'none',
		'transitionOut'	: 'none',
		'title'			: this.title,
		'width'			: 680,
		'height'		: 495,
		'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
		'type'			: 'swf'
		});
		return false;
	});
});
$(".question").toggle(function() {
		$(this).next(".answer").show("slow");
	}, function() {
		$(this).next(".answer").hide("fast");
	});