$(function() {
	
	/*
		Begin jQuery UI Functions
	*/
	// This adds the ability to move the card box around
	$('#page').draggable({ handle: '#page-header', axis: 'x', containment: 'body', scroll: false, grid: [20,20] });
	// This creates an effect to collapse containers, leaving 1 open at a time
	$('#page-content .accordion').accordion({
		autoHeight: false
	});
			
});

