/* Author: Emma Charpentier */

$(document).ready(function() {
	var current_position = $(document).scrollTop() + ($(window).height()/2);
	
	$('nav.primary').children(':first-child').addClass('active');
	
	
	// INIT --------------------------------------------				
		$('section.primary').each(function() {
			var offset = $(this).offset();
			var next_offset = $(this).next().offset();
			var hash = $(this).attr('id');
			var marge = ($(window).height()-$(this).outerHeight())/38 /* Base font-size */;
			
			//ASSURE QU'UNE SOUS SECTION PRENDRA TOUT L'ESPACE ET SERA CENTREE DANS L'ECRAN
/*
				if($(this).height()<$(window).height() && $(this).hasClass('sub'))
					$(this).css({'padding-top' : ''+marge+'em', 'padding-bottom' : ''+marge+'em'});
*/

			
			if(!$(this).hasClass('active') && !$(this).is(':last-child') && current_position >= offset.top && current_position <= next_offset.top || $(this).is(':last-child') && current_position >= offset.top ) {
	
			//ACTIVER LA BONNE SECTION ET SES ENFANTS
				$(this).addClass('active').siblings().removeClass('active');
				$('nav.primary').find('a[href="#'+hash+'"]').addClass('active').siblings().removeClass('active');
				
				$(this).siblings().find('section.active').removeClass('active').parents('body').removeClass().addClass(hash);
			}
		});

	// SCROLLING ACTIONS --------------------------------------------	
	$(window).scroll(function() {
		current_position = $(document).scrollTop() + ($(window).height()/2);
		$('section.primary').each(function() {
			var offset = $(this).offset();
			var next_offset = $(this).next().offset();
			var hash = $(this).attr('id');
			var marge = ($(window).height()-$(this).outerHeight())/38 /* Base font-size */;
			
			//ASSURE QU'UNE SOUS SECTION PRENDRA TOUT L'ESPACE ET SERA CENTREE DANS L'ECRAN
				if($(this).height()<$(window).height() && $(this).hasClass('sub'))
					$(this).css({'padding-top' : ''+marge+'em', 'padding-bottom' : ''+marge+'em'});

			
			if(!$(this).hasClass('active') && !$(this).is(':last-child') && current_position >= offset.top && current_position <= next_offset.top || $(this).is(':last-child') && current_position >= offset.top ) {
	
			//ACTIVER LA BONNE SECTION ET SES ENFANTS
				$(this).addClass('active').siblings().removeClass('active');
				$('nav.primary').find('a[href="#'+hash+'"]').addClass('active').siblings().removeClass('active');
				
				$(this).siblings().find('section.active').removeClass('active').parents('body').removeClass().addClass(hash);
			}
		});
	}); 
});
























