
			jQuery(function(){
				jQuery("a#morning").click(
					function(){
						jQuery("#morning-content,#bedtime-content,#all-day-content,#in-the-sun-content,#mouth-off-content,").css({'display': 'none'});
						jQuery("ul#morning-content").css({'display': 'block'});
						jQuery("a#morning").css({'background': '#cc0066','color': 'white', 'height': '40px'});
						jQuery("#bedtime,#all-day,#in-the-sun,#mouth-off,").css({'background': 'white','color': 'black', 'height': '40px'});
						return false;
				});
			
				jQuery("a#bedtime").click(
					function(){
						jQuery("#morning-content,#bedtime-content,#all-day-content,#in-the-sun-content,#mouth-off-content,").css({'display': 'none'});
						jQuery("ul#bedtime-content").css({'display': 'block'});
						jQuery("a#bedtime").css({'background': '#cc0066','color': 'white', 'height': '40px'});
						jQuery("#morning,#all-day,#in-the-sun,#mouth-off,").css({'background': 'white','color': 'black', 'height': '40px'});
						return false;
				});
			
				jQuery("a#all-day").click(
					function(){
						jQuery("#morning-content,#bedtime-content,#all-day-content,#in-the-sun-content,#mouth-off-content,").css({'display': 'none'});
						jQuery("ul#all-day-content").css({'display': 'block'});
						jQuery("a#all-day").css({'background': '#cc0066','color': 'white', 'height': '40px'});
						jQuery("#morning,#bedtime,#in-the-sun,#mouth-off,").css({'background': 'white','color': 'black', 'height': '40px'});
						return false;
				});
			
				jQuery("a#in-the-sun").click(
					function(){
						jQuery("#morning-content,#bedtime-content,#all-day-content,#in-the-sun-content,#mouth-off-content,").css({'display': 'none'});
						jQuery("ul#in-the-sun-content").css({'display': 'block'});
						jQuery("a#in-the-sun").css({'background': '#cc0066','color': 'white', 'height': '40px'});
						jQuery("#morning,#bedtime,#all-day,#mouth-off,").css({'background': 'white','color': 'black', 'height': '40px'});
						return false;
				});
			
				jQuery("a#mouth-off").click(
					function(){
						jQuery("#morning-content,#bedtime-content,#all-day-content,#in-the-sun-content,#mouth-off-content,").css({'display': 'none'});
						jQuery("ul#mouth-off-content").css({'display': 'block'});
						jQuery("a#mouth-off").css({'background': '#cc0066','color': 'white', 'height': '40px'});
						jQuery("#morning,#bedtime,#all-day,#in-the-sun,").css({'background': 'white','color': 'black', 'height': '40px'});
						return false;
				});	
			});

