$(document).ready(function(){
	$('#tBook').click(function(){
		if(!$('#agree').attr('checked')) {
			alert('Please read the survival guide, then tick the checkbox to show that you agree');
			return false;
		}
	});

});