toggle_video_display = function(obj) {
	$(obj).parents('ul').find('.video-container').hide("slow", function() {
		$(obj).next().show('slow');
	});
};