
function toggleTemplateSize() {
	if(!$('#container').hasClass('minimise')) {
		$('#container').animate({
			top: -200
		}, function() {
			$('#buttons .minimise').html('Maximise');
		});
		// Menu is outside so we need to move that as well
		$('#menu').animate({
			paddingTop: 259
		});
		$.ajax({
			url : '/includes/template/ajax.php?f=containerSize&size=minimise',
			success : function(data) {
				$('#container').addClass('minimise');
			}
		});
	} else {
		$('#container').animate({
			top: 0
		}, function() {
			$('#buttons .minimise').html('Minimise');
		});
		// Menu is outside so we need to move that as well
		$('#menu').animate({
			paddingTop: 459
		});
		$.ajax({
			url : '/includes/template/ajax.php?f=containerSize',
			success : function(data) {
				$('#container').removeClass('minimise');
			}
		});
	}
}

function joinCornerstone() {
	alert('Form to be displayed');
}
