$(document).ready(function(){
	
	$("a[href^='http']").attr('target','_blank');
	
	$(".team_contact_boxes").css({'display' : 'none'}); 
	$(".team_contact_links").click(function(){

		var target = $(this).attr("href");
		$(target).animate({
			height: 'toggle'
		  }, 600, function() {
			// Animation complete.
		  });
	});
	
});
