// JavaScript Document

/******************************************************************

Scripts for HoferDesign: the web portfolio of Ben Hofer

*******************************************************************/

//wordpress archive post fader

jQuery(document).ready(function($){

	
	
	$('ul#archive-nav li strong').click(function() {
													   
		$('ul#archive-nav li strong').removeClass('active');
		
	});
	
	$('ul#archive-nav li').hover(
      
	  function () {
      $(this).children('strong').addClass('focus');
	  $(this).children().not('strong').animate({opacity: "show"}, "fast");
	  }, 
      function () {
      $(this).children('strong').removeClass('focus');
	  $(this).children().not('strong').animate({opacity: "hide"}, "fast");
	  })
	
	.click(function() {	
		
		$(this).children('strong').addClass('active');
		
		var postclass = '.' + $(this).attr('id');
		
		$('.hidden').not(postclass).hide();
		
		$(postclass).fadeIn('slow').show();
	
	});
	
	$('ul#archive-nav li:first strong').addClass('active');
	
	$('.hidden:first').show();

	
});
