$(document).ready(function() {
	// move the right content above the left and mark the body appropriately
	$('#Content').append($('#LeftContent')).addClass('floatLayout');
	// setup button styles
	$('ul.buttons').each(function(i, ul) {
		var className = '';
		if ($(ul).hasClass('green')) {
			className = 'green';
		} else if ($(ul).hasClass('blue')) {
			className = 'blue';
		}
		$(ul).children('li').addClass('button ' + className);
	} );
} );
