$(document).ready(function(){
	
	function selectMenu(selectedOption) {
		selectedOption = selectedOption.replace('#','');
		$('#the-loop-nav a').removeClass('selected');
		$('#the-loop-nav a.'+selectedOption).addClass('selected');
	}
	
	//Add clicks for nav.
	$('#the-loop-nav a').click(function(e) {
		e.preventDefault();
		var href = $(this).attr('href');
		selectMenu(href);
		$('#the-loop li').hide();
		$(href).show();
	});
	//Apply function to links inside as well
	$('#the-loop a.next-link').click(function(e) {
		e.preventDefault();
		var href = $(this).attr('href');
		selectMenu(href);
		$('#the-loop li').hide();
		$(href).show();
	});	
	//Apply function to links inside as well
	$('#the-loop a.prev-link').click(function(e) {
		e.preventDefault();
		var href = $(this).attr('href');
		selectMenu(href);
		$('#the-loop li').hide();
		$(href).show();
	});

	//Hide All stages.
	$('#the-loop li').hide();
	$('#collection').show();
	
	$('#print-button').click(function(e) {
		e.preventDefault();
		$('#the-loop li').show();
		window.print();
	});
	
});