// JavaScript Document


// Modal box functions
$(function(){

	$('#modalnav').show();
	$('.stage-item:first').fadeIn(400);
	
	$('.nav-item').click(function(){
	
		var selecteddiv = $(this).attr("href");
		$('.stage-item').hide();
		$('#' + selecteddiv).fadeIn(1000);
		$('.nav-item').removeClass("selected");
		$(this).addClass("selected");
		return false;

	});

});
//------ end modal box functions