$(function() {

		   

		var path = location.pathname.substring(1);

		if ( path )

		$('#main_nav a[@href$="' + path + '"]').attr('class', 'selected');

		

		var subpath = location.pathname.substring(1);

		if ( subpath )

		$('#sub_nav a[@href$="' + subpath + '"]').attr('class', 'selected');
		

		var testimonypath_1 = location.pathname.substring(1);
		
		if ( testimonypath_1 )
		
		$('#testimony_nav_1 a[@href$="' + testimonypath_1 + '"]').attr('class', 'selected');
		
		var testimonypath_2 = location.pathname.substring(1);
		
		if ( testimonypath_2 )
		
		$('#testimony_nav_2 a[@href$="' + testimonypath_2 + '"]').attr('class', 'selected');
		
		
		$('a.new_win').click(function(){
			window.open(this.href);
			return false;
		});

		

		var curr_num = 1;

		var txts = 3;

		

		$('.txt_02').hide();
		$('.txt_03').hide();

		$('#overlay').fadeOut();

			

		$('#txt_fwd_t').click(function(){

		var next_num = curr_num+1;

		if(curr_num < txts){

			$('#overlay').fadeIn(function(){

				$('.txt_0'+curr_num).hide();

				$('.txt_0'+next_num).show(function(){

					$('#overlay').fadeOut('slow');

					$('#txt_num').html(next_num);

					curr_num = next_num;

					});

				});

			};

		});

		

		$('#txt_bck_t').click(function(){

		var next_num = curr_num-1;

		if(curr_num > 1){

			$('#overlay').fadeIn(function(){

				$('.txt_0'+curr_num).hide();

				$('.txt_0'+next_num).show(function(){

					$('#overlay').fadeOut('slow');

					$('#txt_num').html(next_num);

					curr_num = next_num;

					});

				});

			};

		});

});