$(document).ready(function() {
	$("#tweets > div > ul:not(:first)").hide();
	$("h3 a").click(function() {
		$("#tweets > div > ul:visible").slideUp(300, function() {
			$(this).prev().find('em').attr('class', 'off');
		});
		$(this).parent().next().slideDown(300, function() {
			$(this).prev().find('em').attr('class', 'on');
		});
		return false;
	});

	$('#terms').colorbox({ width: "580px", height: "500px", iframe: true });
	$('#how-to').colorbox({ width: "580px", height: "600px", iframe: true });
});