$(document).ready(function() {
	$('#box').hide();
    $('a#start').click(function() {
		$('#box').toggle(400);
		return false;
	});
});


