$(document).ready(function() {
		// Hides call category divs
		$('#interviews').hide();
		$('#how-to').hide();
		$('#sports').hide();
		$('#news').hide();
		$('#sample-cats').hide();
		$('#testimonials').hide();
		$('#date').hide();
		$('.box').corners();
		$('.rounded').corners();

		// Shows all category divs and hide the categories by date 
		$('a#show-categories').click(function() {
			$('#date').hide();
			$('#interviews').show();
			$('#how-to').show();
			$('#sports').show();
			$('#news').show();
			$('#testimonials').hide();
			$('#featured').hide();
			return false; 
			});       
			
		// Shows interviews only  
		$('a#show-interviews').click(function() {
			$('#interviews').show();
			$('#date').hide();
			$('#how-to').hide();
			$('#sports').hide();
			$('#news').hide();
			$('#testimonials').hide();
			$('#featured').hide();
			return false; 
			});       
			
		// Shows how-to articles only  
		$('a#show-how-to').click(function() {
			$('#how-to').show();
			$('#date').hide();
			$('#interviews').hide();
			$('#sports').hide();
			$('#news').hide();
			$('#testimonials').hide();
			$('#featured').hide();
			return false; 
			});
			
		// Shows sports articles only  
		$('a#show-sports').click(function() {
			$('#sports').show();
			$('#date').hide();
			$('#interviews').hide();
			$('#how-to').hide();
			$('#news').hide();
			$('#testimonials').hide();
			$('#featured').hide();
			return false; 
			});

		// Shows aLL articles by date  
		$('a#show-date').click(function() {
			$('#date').show();
			$('#how-to').hide();
			$('#interviews').hide();
			$('#sports').hide();
			$('#news').hide();
			$('#testimonials').hide();
			$('#featured').hide();
			return false; 
			});

		// Show testimonials
		$('a#show-testimonials').click(function() {
			$('#date').hide();
			$('#how-to').hide();
			$('#interviews').hide();
			$('#sports').hide();
			$('#news').hide();
			$('#testimonials').show();
			$('#featured').hide();
			return false; 
			});

		// Shows news articles articles only  
		$('a#show-news-articles').click(function() {
			$('#news').show();
			$('#how-to').hide();
			$('#interviews').hide();
			$('#sports').hide();
			$('#date').hide();
			$('#testimonials').hide();
			$('#featured').hide();
			return false; 
			});
			
		// Shows featured articles only
		$('a#show-featured').click(function() {
			$('#featured').show();
			$('#news').hide();
			$('#how-to').hide();
			$('#interviews').hide();
			$('#sports').hide();
			$('#date').hide();
			$('#testimonials').hide();
			return false; 
			});

 	// Shows categories in the header when the heading is clicked
  		$('#show-categories').toggle(function() {
  			$('#sample-cats').show();
  			},function () {
  			$('#sample-cats').hide();
  			});


		});