$(document).ready(function(){

	/* CUFON FONT REPLACEMENTS */
	Cufon.replace('h1');
	Cufon.replace('h2');
	
	
	
	
	$('.wp-post-image').hover(function() {
		$(this).stop().animate({opacity: 1}, 200, 'swing');
	});
	
	$('.wp-post-image').mouseout(function() {
		$(this).stop().animate({opacity: .75}, 400);
	});
	
	$.localScroll({offset: -160, hash:true, duration: 400, easing: 'swing'});

	
	var topRange      = 160,  // measure from the top of the viewport to X pixels down
	    edgeMargin    = 0,   // margin above the top or margin from the end of the page
	    contentTop = [];
	    

	$('#subnav').find('a.subsection').each(function(){
		contentTop.push( $( $(this).attr('href') ).offset().top );
	});
		
	$(window).scroll(function(){

		var currentSubsection = 0;
		
		$.each( contentTop, function(i,loc){
			if ( ($(window).scrollTop() + 160) > loc ){
				currentSubsection = i;
			}
		});
				
		$('#subnav a.subsection')
		 .removeClass('selected')
		 .eq(currentSubsection).addClass('selected');
		
 	});
	
});
