$(function() {
	$('a.lightbox').lightBox();
});
// FAQ

$("dl:eq > dd:not(.open)").hide();
	$("dl:eq > dt").click(function() {
		$(this).next().slideToggle("fast");
	});
	$("a.expandall").click(function() {
		$("dl:eq > dd").show();
		return false;
	});