/* * * * * * * * * * * 
   TTI Template
	javascript - JQuery noConflicts()
	tehcompany
* * * * * * * * * * */

jQuery.noConflict();
jQuery(document).ready(function(){
	

	jQuery("input").focus(function(){ 
		if( jQuery(this).val() == "Sign up for email updates" ){ jQuery(this).val(""); }
	});



	jQuery("a.bio_switch").click(function(){  

		var content_show = jQuery(this).attr("title");
		var content = jQuery("#" + content_show).html();
		
		jQuery(".content_team").html(content);
		
	});
	
	jQuery("a.nav_switch").click(function(){  

		var content_show = jQuery(this).attr("title");
		var content = jQuery("#" + content_show).html();
		
		jQuery(".content_involved").html(content);
		
	});

	
});