/********************************************

Integraded Project Management
jQuery Our People Initialization    	

*******************************************/

$(document).ready(function(){

	//OUR PEOPLE BIO TOGGLE
    $("#our_leadership .text").hide();
    $("#our_leadership .read_bio").addClass('closed');
	
	$("#our_leadership .read_bio").click(
		function() {
		
			if ($(this).hasClass('closed')) {
				$(this).html('Close Bio');
				$(this).removeClass('closed');
				$(this).parents('.row').find('.text').slideDown(150);
			} else {
				$(this).html('Read Bio');
				$(this).addClass('closed');
				$(this).parents('.row').find('.text').slideUp(150);
			}
		
		return false;
		
		}
	);

});
