$(function() {
	$('.back').click(function() {
		if (history.length > 1) {
			history.back();
			return false;
		}
	});
});