$(document).ready(function(){
  
	$(document).bgStretcher({
		images: ['/images/background.jpg'],
		imageWidth: 1778, imageHeight: 1269
	});
	
	$(".question").click(function(){
		$(this).parent().children('div.answer').slideToggle('fast');
		return false;
	});
	
	$(".year h2").click(function(){
		$(this).parent().children('div.archive-links').slideToggle('fast');
		return false;
	});
	
	$("a[rel='colorbox']").colorbox();
});
