$(document).ready(function() {
	$('#subnav ul li:last-child').addClass('nbr');
	$('#white_container ul.testimonials li:first-child').addClass('testim_name');
	// Our Team Bio's
	$('.bio').click(function() {
		id = $(this).attr('rel');
		$.ajax({
			  url: 'ajax.php',
			  data: 'focus=bio_pull&id=' + id,
			  dataType: 'json',
			  type: 'POST',
			success: function(j) {
			  $('#bio h2').html(j.header);
			  $('#bio #bio_text').html(j.bio);
			  $('#bio img.bio_image').attr('src', j.bio_image);
			  $('#bio')
				.fadeIn('fast');
			} // close success
		}); // close ajax	
	});
});
