$(document).ready(function(){
	
	// Set "Navigate This Page"
	if($('h2').length > 2){
		var ul = $('<ul></ul>');
		$('h2').each(function(){
			var id = $(this).text().toLowerCase().replace(/ /g, '_');
			$(this).attr('id', id);
			ul.append( $('<li><a href="#'+id+'">'+$(this).text()+'</a></li>') );
		});
		$('.nav-this-page').show().find('nav').append(ul);
	}
	
	// Examples page
	$('.proj aside').hide();
	$('.tog').show();
	$('.tog').click(function(){
		var tog = $(this), aside = tog.prev();
		$('.proj aside').not(aside).slideUp(200,function(){
			$(this).next().text('View Project Details');
		});
		aside.slideToggle(200,function(){
			if($(this).is(':visible')){ tog.text('Close Project Details'); }
			else { tog.text('View Project Details'); }
		});
		return false;
	});
});
