$().ready(function() {
	$('#question-steps a[name=continue]').click(function() {
		if ($(this).attr('href') == null)
		{
			alert("All questions must be marked as completed before continueing.");
		}
	});
});