/*

$.fn.center = function() {
			var menumargin= (this.parent().width() - this.width()) / 2;
	 		this.css('margin-left',menumargin);
			$(this).children(":last").css('border-right','none');
			
	 };

$.fn.spacer = function() {
  		
		var spacewidth= (this.parent().width() - this.width()) / (this.children().size()-1);
		
		this.children().not(':last').each(function(){
			
			if ($(this) != $(this).parent()+":last-child") {
				$(this).css('margin-right',spacewidth);
			}
		
		});
		
	 };
	 
$(document).ready(function(){

	$('#nav-cat :last-child').css('border-right','none');
});

*/
		function statswitch(section){
			document.getElementById('homestats').style.display = 'none';
			document.getElementById('todaystats').style.display = 'none';
			document.getElementById('weekstats').style.display = 'none';
			document.getElementById('monthstats').style.display = 'none';
			
			document.getElementById(section).style.display = 'block';
		}