$(document).ready(function() {
	$('#switch').click(function(e) {
		e.preventDefault();
		$('body').toggleClass('night');
	});
});
