jQuery(document).ready(function(){
	
		//hide all posts
		jQuery('#all-list-wrap ul').hide();
		
		//fade in initial content
		jQuery('#all-list-wrap ul.featured').fadeIn(1000);
	
		//set general behavior for tabs
		jQuery('#explore-nav li a').click(function(){
		jQuery('#explore-nav li a').removeClass('current');
		jQuery(this).addClass('current');
		jQuery('#all-list-wrap ul').hide();
		return false;	
		});
		
		//attatch individual behaviors  for when you click on a nav link
		
		//featured
		jQuery('#explore-nav li #featured').click(function(){
		jQuery('#all-list-wrap ul').hide();
		jQuery('#all-list-wrap ul.featured').fadeIn(1000);
		});
	
		//recent news
		jQuery('#explore-nav li #core').click(function(){
		jQuery('#all-list-wrap ul').hide();
		jQuery('#all-list-wrap ul.core').fadeIn(1000);
		});
		
		//Tutorials
		jQuery('#explore-nav li #tutorials').click(function(){
		jQuery('#all-list-wrap ul').hide();
		jQuery('#all-list-wrap ul.tutorials').fadeIn(1000);
		});

}); 	//ending jquery

