// JavaScript Document
$(document).ready(function() {
	
	
	// changes selected client box
	$('div.storyBox').hide();
	$('div.storyBox:first').show();
	$('ul#nav>li').click(function(){
		//selected client boxes
		var navLI = $('ul#nav>li').index(this);
		var storyBoxes = $('div.storyBox');
		$('div.storyBox').hide();	
		$(storyBoxes).eq(navLI).show();
		$('ul#nav>li>a').removeClass('bold');
		$('ul#nav>li').removeClass('bold');
		$(this).addClass('bold');
		}
	);
	
	$('a').click(function(){
			$(this).blur();
		});
	
	$('a.nextLink').click(function(){
		$(this).parent().parent().hide();
		$('ul#nav>li>a').removeClass('bold');
		$('ul#nav>li').removeClass('bold');
		$(this).parent().parent().next('div.storyBox').show();
		var nextLink = $('a.nextLink').index(this);
		var navIndex = $('ul#nav>li');
		$(navIndex).eq(nextLink + 1).addClass('bold');
		}
	);
	
	
								
					  
});