$(document).ready(function(){
	// toggles the slickbox on clicking the noted link
	$('input#login-toggle').click(function() {
		$('#loginbox').slideToggle(400);
		return false;
	});
	
	showLastQuestion();	

});

