$(document).ready(function(){

	$(".team_").fadeTo(0,fadeAmount);

	$(".team_").click(function(){
	 	 window.location = $(this).find("a").attr("href"); return false;
	});
	
	$(".team_").hoverIntent(
		function(){
			$(this).fadeTo("slow",1);
	  		$(this).find('._banner').fadeIn("slow");
		},
		function(){
			$(this).fadeTo("fast",fadeAmount);
			$(this).find('._banner').fadeOut("fast");
		});
		
	$('.portrait_name').hover(
		function(){
			$(this).css("color","#caffa6");
		},
		function() {
		$(this).css("color","#009ea6");
	});
	
	$('.icon_name').hover(
		function(){
			$(this).css("color","#caffa6");
		},
		function() {
		$(this).css("color","#009ea6");
	});
	
});

	
	
	
	
	
	
	
	
	
	
