	$(document).ready(function(){
		$('#entries div.entry').hide();
		$('#e-better').show();
		$('#e-better-video').show();
        $('#subnav a').click(function(){ 
        // Make the id overview show 
		   	   $('#subnav a').removeClass("selected");
 		       $('#entries div.entry').hide();
			   $(this).addClass("selected");
			   if (this.id == 'a-better') {
			   	  $('#e-better').show(); 
			   	  $('#e-better-video').show(); 
			   } 
			   else if (this.id == 'a-education') {
			   	  $('#e-education').show(); 
			   	  $('#e-edu-video').show(); 
			   } 
			   else if (this.id == 'a-music') {
			   	  $('#e-music').show(); 
			   	  $('#e-music-video').show(); 
			   } 
			   else if (this.id == 'a-youth') {
			   	  $('#e-youth').show(); 
			   } 
			   else if (this.id == 'a-other') {
			   	  $('#e-other').show(); 
			   	  $('#e-other-video').show(); 
			   }
			   else {
			   	  $('#e-better').show(); 
			   	  $('#e-better-video').show(); 
			   }

               // override default a behavior 
               return false; 
        }); 
    }); 

