// Function to keep the footer at the bottom of the screen //
/*$(document).ready(function() {
	var d = $('#bodyDiv').height();
	var c = $('#contentExpand').height();
	var h = $(document).height();
	
	if (d < h) {
		$('#contentExpand').height(h-d+c);
	}
	
});
// Function to make left nav shadow go the entire height of the menu
$(document).ready(function() {
	if( $('#leftNavRight') && $('#leftNavMid')) {
		$('#leftNavRight').height($('#leftNavMid').height());
	}
	if(!$('#leftNavMid div ul').html()){
	    $('#leftNavBottom').hide();
	}
});
*/
