$(document).ready(function(){
	
			//When the page loads
			$('.entry-content').hide(); //This hides all of the content on the page at first
			$('#side-nav a:first').addClass("tab-active").show(); // Activates the first tab makes it white
			$('.entry-content:first').show(); // This shows just the first div with the class tab_content
						
			//Next we're Going to set up the click function so that it tabs in between
			$('li.entry-item').click(function() {
				$('li.entry-item').removeClass("tab-active");
				$('#side-nav a:first').removeClass("tab-active");
				$(this).addClass("tab-active");
				$('.entry-content').hide();
				
				var activeTab = $(this).find('a').attr('href');
				$(activeTab).fadeIn();
				return false;
			});
		});
